home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / emacssrc.zip / EMACSSRC.TAR / emacs-19.17 / lisp / calendar.el < prev    next >
Text File  |  1993-07-23  |  132KB  |  3,022 lines

  1. ;;; calendar.el --- Calendar functions.
  2.  
  3. ;;; Copyright (C) 1988, 1989, 1990, 1991, 1992 Free Software Foundation, Inc.
  4.  
  5. ;; Author: Edward M. Reingold <reingold@cs.uiuc.edu>
  6. ;; Keywords: calendar
  7. ;; Human-Keywords: calendar, Gregorian calendar, Julian calendar, 
  8. ;;    Hebrew calendar, Islamic calendar, ISO calendar, Julian day number,
  9. ;;    diary, holidays
  10.  
  11. (defconst calendar-version "Version 5.1, released June 18, 1993")
  12.  
  13. ;; This file is part of GNU Emacs.
  14.  
  15. ;; GNU Emacs is distributed in the hope that it will be useful,
  16. ;; but WITHOUT ANY WARRANTY.  No author or distributor
  17. ;; accepts responsibility to anyone for the consequences of using it
  18. ;; or for whether it serves any particular purpose or works at all,
  19. ;; unless he says so in writing.  Refer to the GNU Emacs General Public
  20. ;; License for full details.
  21.  
  22. ;; Everyone is granted permission to copy, modify and redistribute
  23. ;; GNU Emacs, but only under the conditions described in the
  24. ;; GNU Emacs General Public License.   A copy of this license is
  25. ;; supposed to have been given to you along with GNU Emacs so you
  26. ;; can know your rights and responsibilities.  It should be in a
  27. ;; file named COPYING.  Among other things, the copyright notice
  28. ;; and this notice must be preserved on all copies.
  29.  
  30. ;;; Commentary:
  31.  
  32. ;; This collection of functions implements a calendar window.  It
  33. ;; generates a calendar for the current month, together with the previous
  34. ;; and coming months, or for any other three-month period.  The calendar
  35. ;; can be scrolled forward and backward in the window to show months in
  36. ;; the past or future; the cursor can move forward and backward by days,
  37. ;; weeks, or months, making it possible, for instance, to jump to the
  38. ;; date a specified number of days, weeks, or months from the date under
  39. ;; the cursor.  The user can display a list of holidays and other notable
  40. ;; days for the period shown; the notable days can be marked on the
  41. ;; calendar, if desired.  The user can also specify that dates having
  42. ;; corresponding diary entries (in a file that the user specifies) be
  43. ;; marked; the diary entries for any date can be viewed in a separate
  44. ;; window.  The diary and the notable days can be viewed independently of
  45. ;; the calendar.  Dates can be translated from the (usual) Gregorian
  46. ;; calendar to the day of the year/days remaining in year, to the ISO
  47. ;; commercial calendar, to the Julian (old style) calendar, to the Hebrew
  48. ;; calendar, to the Islamic calendar, to the French Revolutionary calendar,
  49. ;; to the Mayan calendar, and to the astronomical (Julian) day number.
  50. ;; When floating point is available, times of sunrise/sunset can be displayed,
  51. ;; as can the phases of the moon.  Appointment notification for diary entries
  52. ;; is available.
  53.  
  54. ;; The following files are part of the calendar/diary code:
  55.  
  56. ;;       diary.el, diary-ins.el        Diary functions
  57. ;;       holidays.el                   Holiday functions
  58. ;;       cal-french.el                 French Revolutionary calendar
  59. ;;       cal-mayan.el                  Mayan calendars
  60. ;;       cal-dst.el                    Daylight savings time rules
  61. ;;       solar.el                      Sunrise/sunset, equinoxes/solstices
  62. ;;       lunar.el                      Phases of the moon
  63. ;;       appt.el                       Appointment notification
  64.  
  65. ;; Comments, corrections, and improvements should be sent to
  66. ;;  Edward M. Reingold               Department of Computer Science
  67. ;;  (217) 333-6733                   University of Illinois at Urbana-Champaign
  68. ;;  reingold@cs.uiuc.edu             1304 West Springfield Avenue
  69. ;;                                   Urbana, Illinois 61801
  70.  
  71. ;; GNU Emacs users too numerous to list pointed out a variety of problems
  72. ;; with earlier forms of the `infinite' sliding calendar and suggested some
  73. ;; of the features included in this package.  Especially significant in this
  74. ;; regard was the suggestion of mark-diary-entries and view-diary-entries,
  75. ;; together ideas for their implementation, by
  76. ;;  Michael S. Littman             Cognitive Science Research Group
  77. ;;  (201) 829-5155                   Bell Communications Research
  78. ;;  mlittman@wind.bellcore.com       445 South St. Box 1961 (2L-331)
  79. ;;                                   Morristown, NJ  07960
  80.  
  81. ;; The algorithms for the Hebrew calendar are those of the Rambam (Rabbi Moses
  82. ;; Maimonides), from his Mishneh Torah, as implemented by
  83. ;;  Nachum Dershowitz                Department of Computer Science
  84. ;;  (217) 333-4219                   University of Illinois at Urbana-Champaign
  85. ;;  nachum@cs.uiuc.edu               1304 West Springfield Avenue
  86. ;;                                   Urbana, Illinois 61801
  87.  
  88. ;; Technical details of all the calendrical calculations can be found in
  89.  
  90. ;; ``Calendrical Calculations'' by Nachum Dershowitz and Edward M. Reingold,
  91. ;; Software--Practice and Experience, Volume 20, Number 9 (September, 1990),
  92. ;; pages 899-928.  ``Calendrical Calculations, Part II: Three Historical
  93. ;; Calendars'' by E. M. Reingold,  N. Dershowitz, and S. M. Clamen,
  94. ;; Software--Practice and Experience, Volume 23, Number 4 (April, 1993),
  95. ;; pages 383-404.
  96.  
  97. ;; Hard copies of these two papers can be obtained by sending email to
  98. ;; reingold@cs.uiuc.edu with the SUBJECT "send-paper-cal" (no quotes) and
  99. ;; the message BODY containing your mailing address (snail).
  100.  
  101. ;;; Code:
  102.  
  103. ;;;###autoload
  104. (defvar view-diary-entries-initially nil
  105.   "*If t, the diary entries for the current date will be displayed on entry.
  106. The diary is displayed in another window when the calendar is first displayed,
  107. if the current date is visible.  The number of days of diary entries displayed
  108. is governed by the variable `number-of-diary-entries'.")
  109.  
  110. ;;;###autoload
  111. (defvar number-of-diary-entries 1
  112.   "*Specifies how many days of diary entries are to be displayed initially.
  113. This variable affects the diary display when the command M-x diary is used,
  114. or if the value of the variable `view-diary-entries-initially' is t.  For
  115. example, if the default value 1 is used, then only the current day's diary
  116. entries will be displayed.  If the value 2 is used, then both the current
  117. day's and the next day's entries will be displayed.  The value can also be
  118. a vector such as [0 2 2 2 2 4 1]; this value will cause no diary entries to
  119. be displayed on Sunday, the current date's and the next day's diary entries
  120. to be displayed Monday through Thursday, Friday through Monday's entries to
  121. be displayed on Friday, and only Saturday's entries to be displayed on
  122. Saturday.  This variable does not affect the diary display with the `d'
  123. command from the calendar; in that case, the prefix argument controls the
  124. number of days of diary entries displayed.")
  125.  
  126. ;;;###autoload
  127. (defvar mark-diary-entries-in-calendar nil
  128.   "*If t, dates with diary entries will be marked in the calendar window.
  129. The marking symbol is specified by the variable `diary-entry-marker'.")
  130.  
  131. ;;;###autoload
  132. (defvar diary-entry-marker "+"
  133.   "*The symbol used to mark dates that have diary entries.")
  134.  
  135. ;;;###autoload
  136. (defvar view-calendar-holidays-initially nil
  137.   "*If t, holidays for current three month period will be displayed on entry.
  138. The holidays are displayed in another window when the calendar is first
  139. displayed.")
  140.  
  141. ;;;###autoload
  142. (defvar mark-holidays-in-calendar nil
  143.   "*If t, dates of holidays will be marked in the calendar window.
  144. The marking symbol is specified by the variable `calendar-holiday-marker'.")
  145.  
  146. ;;;###autoload
  147. (defvar calendar-holiday-marker "*"
  148.   "*The symbol used to mark notable dates in the calendar.")
  149.  
  150. ;;;###autoload
  151. (defvar all-hebrew-calendar-holidays nil
  152.   "*If nil, show only major holidays from the Hebrew calendar.
  153.  
  154. If nil, the only holidays from the Hebrew calendar shown will be those days of
  155. such major interest as to appear on secular calendars.
  156.  
  157. If t, the holidays shown in the calendar will include all special days that
  158. would be shown on a complete Hebrew calendar.")
  159.  
  160. ;;;###autoload
  161. (defvar all-christian-calendar-holidays nil
  162.   "*If nil, show only major holidays from the Christian calendar.
  163.  
  164. If nil, the only holidays from the Christian calendar shown will be those days
  165. of such major interest as to appear on secular calendars.
  166.  
  167. If t, the holidays shown in the calendar will include all special days that
  168. would be shown on a complete Christian calendar.")
  169.  
  170. ;;;###autoload
  171. (defvar all-islamic-calendar-holidays nil
  172.   "*If nil, show only major holidays from the Islamic calendar.
  173.  
  174. If nil, the only holidays from the Islamic calendar shown will be those days
  175. of such major interest as to appear on secular calendars.
  176.  
  177. If t, the holidays shown in the calendar will include all special days that
  178. would be shown on a complete Islamic calendar.")
  179.  
  180. ;;;###autoload
  181. (defvar calendar-load-hook nil
  182.   "*List of functions to be called after the calendar is first loaded.
  183. This is the place to add key bindings to calendar-mode-map.")
  184.  
  185. ;;;###autoload
  186. (defvar initial-calendar-window-hook nil
  187.   "*List of functions to be called when the calendar window is first opened.
  188. The functions invoked are called after the calendar window is opened, but
  189. once opened is never called again.  Leaving the calendar with the `q' command
  190. and reentering it will cause these functions to be called again.")
  191.  
  192. ;;;###autoload
  193. (defvar today-visible-calendar-hook nil
  194.   "*List of functions called whenever the current date is visible.
  195. This can be used, for example, to replace today's date with asterisks; a
  196. function `calendar-star-date' is included for this purpose:
  197.     (setq today-visible-calendar-hook 'calendar-star-date)
  198. It could also be used to mark the current date with `='; a function is also
  199. provided for this:
  200.     (setq today-visible-calendar-hook 'calendar-mark-today)
  201.  
  202. The corresponding variable `today-invisible-calendar-hook' is the list of
  203. functions called when the calendar function was called when the current
  204. date is not visible in the window.
  205.  
  206. Other than the use of the provided functions, the changing of any
  207. characters in the calendar buffer by the hooks may cause the failure of the
  208. functions that move by days and weeks.")
  209.  
  210. ;;;###autoload
  211. (defvar today-invisible-calendar-hook nil
  212.   "*List of functions called whenever the current date is not visible.
  213.  
  214. The corresponding variable `today-visible-calendar-hook' is the list of
  215. functions called when the calendar function was called when the current
  216. date is visible in the window.
  217.  
  218. Other than the use of the provided functions, the changing of any
  219. characters in the calendar buffer by the hooks may cause the failure of the
  220. functions that move by days and weeks.")
  221.  
  222. ;;;###autoload
  223. (defvar diary-file "~/diary"
  224.   "*Name of the file in which one's personal diary of dates is kept.
  225.  
  226. The file's entries are lines in any of the forms
  227.  
  228.             MONTH/DAY
  229.             MONTH/DAY/YEAR
  230.             MONTHNAME DAY
  231.             MONTHNAME DAY, YEAR
  232.             DAYNAME
  233.  
  234. at the beginning of the line; the remainder of the line is the diary entry
  235. string for that date.  MONTH and DAY are one or two digit numbers, YEAR is
  236. a number and may be written in full or abbreviated to the final two digits.
  237. If the date does not contain a year, it is generic and applies to any year.
  238. DAYNAME entries apply to any date on which is on that day of the week.
  239. MONTHNAME and DAYNAME can be spelled in full, abbreviated to three
  240. characters (with or without a period), capitalized or not.  Any of DAY,
  241. MONTH, or MONTHNAME, YEAR can be `*' which matches any day, month, or year,
  242. respectively.
  243.  
  244. The European style (in which the day precedes the month) can be used
  245. instead, if you execute `european-calendar' when in the calendar, or set
  246. `european-calendar-style' to t in your .emacs file.  The European forms are
  247.  
  248.             DAY/MONTH
  249.             DAY/MONTH/YEAR
  250.             DAY MONTHNAME
  251.             DAY MONTHNAME YEAR
  252.             DAYNAME
  253.  
  254. To revert to the default American style from the European style, execute
  255. `american-calendar' in the calendar.
  256.  
  257. A diary entry can be preceded by a diary-nonmarking-symbol (ordinarily `&')
  258. to make that entry nonmarking--that is, it will not be marked on dates in
  259. the calendar window but will appear in a diary window.
  260.  
  261. Multiline diary entries are made by indenting lines after the first with
  262. either a TAB or one or more spaces.
  263.  
  264. Lines not in one the above formats are ignored.  Here are some sample diary
  265. entries (in the default American style):
  266.  
  267.      12/22/1988 Twentieth wedding anniversary!!
  268.      &1/1. Happy New Year!
  269.      10/22 Ruth's birthday.
  270.      21: Payday
  271.      Tuesday--weekly meeting with grad students at 10am
  272.               Supowit, Shen, Bitner, and Kapoor to attend.
  273.      1/13/89 Friday the thirteenth!!
  274.      &thu 4pm squash game with Lloyd.
  275.      mar 16 Dad's birthday
  276.      April 15, 1989 Income tax due.
  277.      &* 15 time cards due.
  278.  
  279. If the first line of a diary entry consists only of the date or day name with
  280. no trailing blanks or punctuation, then that line will not be displayed in the
  281. diary window; only the continuation lines will be shown.  For example, the
  282. single diary entry
  283.  
  284.      02/11/1989
  285.       Bill Blattner visits Princeton today
  286.       2pm Cognitive Studies Committee meeting
  287.       2:30-5:30 Lizzie at Lawrenceville for `Group Initiative'
  288.       4:00pm Jamie Tappenden
  289.       7:30pm Dinner at George and Ed's for Alan Ryan
  290.       7:30-10:00pm dance at Stewart Country Day School
  291.  
  292. will appear in the diary window without the date line at the beginning.  This
  293. facility allows the diary window to look neater, but can cause confusion if
  294. used with more than one day's entries displayed.
  295.  
  296. Diary entries can be based on Lisp sexps.  For example, the diary entry
  297.  
  298.       %%(diary-block 11 1 1990 11 10 1990) Vacation
  299.  
  300. causes the diary entry \"Vacation\" to appear from November 1 through November
  301. 10, 1990.  Other functions available are `diary-float', `diary-anniversary',
  302. `diary-cyclic', `diary-day-of-year', `diary-iso-date', `diary-french-date',
  303. `diary-hebrew-date', `diary-islamic-date', `diary-mayan-date',
  304. `diary-yahrzeit', `diary-sunrise-sunset', `diary-phases-of-moon',
  305. `diary-parasha', `diary-omer', `diary-rosh-hodesh', and
  306. `diary-sabbath-candles'.  See the documentation for the function
  307. `list-sexp-diary-entries' for more details.
  308.  
  309. Diary entries based on the Hebrew and/or the Islamic calendar are also
  310. possible, but because these are somewhat slow, they are ignored
  311. unless you set the `nongregorian-diary-listing-hook' and the
  312. `nongregorian-diary-marking-hook' appropriately.  See the documentation
  313. for these functions for details.
  314.  
  315. Diary files can contain directives to include the contents of other files; for
  316. details, see the documentation for the variable `list-diary-entries-hook'.")
  317.  
  318. ;;;###autoload
  319. (defvar diary-nonmarking-symbol "&"
  320.   "*Symbol indicating that a diary entry is not to be marked in the calendar.")
  321.  
  322. ;;;###autoload
  323. (defvar hebrew-diary-entry-symbol "H"
  324.   "*Symbol indicating a diary entry according to the Hebrew calendar.")
  325.  
  326. ;;;###autoload
  327. (defvar islamic-diary-entry-symbol "I"
  328.   "*Symbol indicating a diary entry according to the Islamic calendar.")
  329.  
  330. ;;;###autoload
  331. (defvar diary-include-string "#include"
  332.   "*The string indicating inclusion of another file of diary entries.
  333. See the documentation for the function `include-other-diary-files'.")
  334.  
  335. ;;;###autoload
  336. (defvar sexp-diary-entry-symbol "%%"
  337.   "*The string used to indicate a sexp diary entry in diary-file.
  338. See the documentation for the function `list-sexp-diary-entries'.")
  339.  
  340. ;;;###autoload
  341. (defvar abbreviated-calendar-year t
  342.   "*Interpret a two-digit year DD in a diary entry as either 19DD or 20DD.
  343. For the Gregorian calendar; similarly for the Hebrew and Islamic calendars.
  344. If this variable is nil, years must be written in full.")
  345.  
  346. ;;;###autoload
  347. (defvar european-calendar-style nil
  348.   "*Use the European style of dates in the diary and in any displays.
  349. If this variable is t, a date 1/2/1990 would be interpreted as February 1,
  350. 1990.  The accepted European date styles are
  351.  
  352.             DAY/MONTH
  353.             DAY/MONTH/YEAR
  354.             DAY MONTHNAME
  355.             DAY MONTHNAME YEAR
  356.             DAYNAME
  357.  
  358. Names can be capitalized or not, written in full, or abbreviated to three
  359. characters with or without a period.")
  360.  
  361. ;;;###autoload
  362. (defvar american-date-diary-pattern
  363.   '((month "/" day "[^/0-9]")
  364.     (month "/" day "/" year "[^0-9]")
  365.     (monthname " *" day "[^,0-9]")
  366.     (monthname " *" day ", *" year "[^0-9]")
  367.     (dayname "\\W"))
  368.   "*List of pseudo-patterns describing the American patterns of date used.
  369. See the documentation of diary-date-forms for an explanation.")
  370.  
  371. ;;;###autoload
  372. (defvar european-date-diary-pattern
  373.   '((day "/" month "[^/0-9]")
  374.     (day "/" month "/" year "[^0-9]")
  375.     (backup day " *" monthname "\\W+\\<[^*0-9]")
  376.     (day " *" monthname " *" year "[^0-9]")
  377.     (dayname "\\W"))
  378.   "*List of pseudo-patterns describing the European patterns of date used.
  379. See the documentation of diary-date-forms for an explanation.")
  380.  
  381. ;;;###autoload
  382. (defvar diary-date-forms
  383.   (if european-calendar-style
  384.       european-date-diary-pattern
  385.     american-date-diary-pattern)
  386.   "*List of pseudo-patterns describing the forms of date used in the diary.
  387. The patterns on the list must be MUTUALLY EXCLUSIVE and must should not match
  388. any portion of the diary entry itself, just the date component.
  389.  
  390. A pseudo-pattern is a list of regular expressions and the keywords `month',
  391. `day', `year', `monthname', and `dayname'.  The keyword `monthname' will
  392. match the name of the month, capitalized or not, or its three-letter
  393. abbreviation, followed by a period or not; it will also match `*'.
  394. Similarly, `dayname' will match the name of the day, capitalized or not, or
  395. its three-letter abbreviation, followed by a period or not.  The keywords
  396. `month', `day', and `year' will match those numerical values, preceded by
  397. arbitrarily many zeros; they will also match `*'.
  398.  
  399. The matching of the diary entries with the date forms is done with the
  400. standard syntax table from Fundamental mode, but with the `*' changed so
  401. that it is a word constituent.
  402.  
  403. If, to be mutually exclusive, a pseudo-pattern must match a portion of the
  404. diary entry itself, the first element of the pattern MUST be `backup'.  This
  405. directive causes the date recognizer to back up to the beginning of the
  406. current word of the diary entry, so in no case can the pattern match more than
  407. a portion of the first word of the diary entry.")
  408.  
  409. ;;;###autoload
  410. (defvar european-calendar-display-form
  411.   '((if dayname (concat dayname ", ")) day " " monthname " " year)
  412.   "*Pseudo-pattern governing the way a date appears in the European style.
  413. See the documentation of calendar-date-display-forms for an explanation.")
  414.  
  415. ;;;###autoload
  416. (defvar american-calendar-display-form
  417.   '((if dayname (concat dayname ", ")) monthname " " day ", " year)
  418.   "*Pseudo-pattern governing the way a date appears in the American style.
  419. See the documentation of calendar-date-display-forms for an explanation.")
  420.  
  421. ;;;###autoload
  422. (defvar calendar-date-display-form
  423.   (if european-calendar-style
  424.       european-calendar-display-form
  425.     american-calendar-display-form)
  426.   "*Pseudo-pattern governing the way a date appears.
  427.  
  428. Used by the function `calendar-date-string', a pseudo-pattern is a list of
  429. expressions that can involve the keywords `month', `day', and `year', all
  430. numbers in string form, and `monthname' and `dayname', both alphabetic
  431. strings.  For example, the ISO standard would use the pseudo- pattern
  432.  
  433.        '(year \"-\" month \"-\" day)
  434.  
  435. while a typical American form would be
  436.  
  437.        '(month \"/\" day \"/\" (substring year -2))
  438.  
  439. and
  440.  
  441.        '((format \"%9s, %9s %2s, %4s\" dayname monthname day year))
  442.  
  443. would give the usual American style in fixed-length fields.
  444.  
  445. See the documentation of the function `calendar-date-string'.")
  446.  
  447. (defun european-calendar ()
  448.   "Set the interpretation and display of dates to the European style."
  449.   (interactive)
  450.   (setq european-calendar-style t)
  451.   (setq calendar-date-display-form european-calendar-display-form)
  452.   (setq diary-date-forms european-date-diary-pattern)
  453.   (update-calendar-mode-line))
  454.  
  455. (defun american-calendar ()
  456.   "Set the interpretation and display of dates to the American style."
  457.   (interactive)
  458.   (setq european-calendar-style nil)
  459.   (setq calendar-date-display-form american-calendar-display-form)
  460.   (setq diary-date-forms american-date-diary-pattern)
  461.   (update-calendar-mode-line))
  462.  
  463. ;;;###autoload
  464. (defvar print-diary-entries-hook 'lpr-buffer
  465.   "*List of functions called after a temporary diary buffer is prepared.
  466. The buffer shows only the diary entries currently visible in the diary
  467. buffer.  The default just does the printing.  Other uses might include, for
  468. example, rearranging the lines into order by day and time, saving the buffer
  469. instead of deleting it, or changing the function used to do the printing.")
  470.  
  471. ;;;###autoload
  472. (defvar list-diary-entries-hook nil
  473.   "*List of functions called after diary file is culled for relevant entries.
  474. It is to be used for diary entries that are not found in the diary file.
  475.  
  476. A function `include-other-diary-files' is provided for use as the value of
  477. this hook.  This function enables you to use shared diary files together
  478. with your own.  The files included are specified in the diary-file by lines
  479. of the form
  480.  
  481.         #include \"filename\"
  482.  
  483. This is recursive; that is, #include directives in files thus included are
  484. obeyed.  You can change the \"#include\" to some other string by changing
  485. the variable `diary-include-string'.  When you use `include-other-diary-files'
  486. as part of the list-diary-entries-hook, you will probably also want to use the
  487. function `mark-included-diary-files' as part of the mark-diary-entries-hook.
  488.  
  489. For example, you could use
  490.  
  491.      (setq list-diary-entries-hook
  492.        '(include-other-diary-files sort-diary-entries))
  493.      (setq diary-display-hook 'fancy-diary-display)
  494.  
  495. in your .emacs file to cause the fancy diary buffer to be displayed with
  496. diary entries from various included files, each day's entries sorted into
  497. lexicographic order.")
  498.  
  499. ;;;###autoload
  500. (defvar diary-display-hook 'simple-diary-display
  501.   "*List of functions that handle the display of the diary.
  502.  
  503. Ordinarily, this just displays the diary buffer (with holidays indicated in
  504. the mode line), if there are any relevant entries.  At the time these
  505. functions are called, the variable `diary-entries-list' is a list, in order
  506. by date, of all relevant diary entries in the form of ((MONTH DAY YEAR)
  507. STRING), where string is the diary entry for the given date.  This can be
  508. used, for example, to handle appointment notification, prepare a different
  509. buffer for display (perhaps combined with holidays), or produce hard copy
  510. output.
  511.  
  512. A function `fancy-diary-display' is provided as an alternative
  513. choice for this hook; this function prepares a special noneditable diary
  514. buffer with the relevant diary entries that has neat day-by-day arrangement
  515. with headings.  The fancy diary buffer will show the holidays unless the
  516. variable `holidays-in-diary-buffer' is set to nil.  Ordinarily, the fancy
  517. diary buffer will not show days for which there are no diary entries, even
  518. if that day is a holiday; if you want such days to be shown in the fancy
  519. diary buffer, set the variable `diary-list-include-blanks' to t.")
  520.  
  521. ;;;###autoload
  522. (defvar nongregorian-diary-listing-hook nil
  523.   "*List of functions called for listing diary file and included files.
  524. As the files are processed for diary entries, these functions are used to cull
  525. relevant entries.  You can use either or both of `list-hebrew-diary-entries'
  526. and `list-islamic-diary-entries'.  The documentation for these functions
  527. describes the style of such diary entries.")
  528.  
  529. ;;;###autoload
  530. (defvar mark-diary-entries-hook nil
  531.   "*List of functions called after marking diary entries in the calendar.
  532.  
  533. A function `mark-included-diary-files' is also provided for use as the
  534. mark-diary-entries-hook; it enables you to use shared diary files together
  535. with your own.  The files included are specified in the diary-file by lines
  536. of the form
  537.         #include \"filename\"
  538. This is recursive; that is, #include directives in files thus included are
  539. obeyed.  You can change the \"#include\" to some other string by changing the
  540. variable `diary-include-string'.  When you use `mark-included-diary-files' as
  541. part of the mark-diary-entries-hook, you will probably also want to use the
  542. function `include-other-diary-files' as part of the list-diary-entries-hook.")
  543.  
  544. ;;;###autoload
  545. (defvar nongregorian-diary-marking-hook nil
  546.   "*List of functions called for marking diary file and included files.
  547. As the files are processed for diary entries, these functions are used to cull
  548. relevant entries.  You can use either or both of `mark-hebrew-diary-entries'
  549. and `mark-islamic-diary-entries'.  The documentation for these functions
  550. describes the style of such diary entries.")
  551.  
  552. ;;;###autoload
  553. (defvar diary-list-include-blanks nil
  554.   "*If nil, do not include days with no diary entry in the list of diary entries.
  555. Such days will then not be shown in the the fancy diary buffer, even if they
  556. are holidays.")
  557.  
  558. ;;;###autoload
  559. (defvar holidays-in-diary-buffer t
  560.   "*If t, the holidays will be indicated in the diary display.
  561. The holidays will be given in the mode line of the diary buffer, or in the
  562. fancy diary buffer next to the date.  This slows down the diary functions
  563. somewhat; setting it to nil will make the diary display faster.")
  564.  
  565. (defvar calendar-mark-ring nil)
  566.  
  567. ;;;###autoload
  568. (defvar general-holidays
  569.   '((holiday-fixed 1 1 "New Year's Day")
  570.     (holiday-float 1 1 3 "Martin Luther King Day")
  571.     (holiday-fixed 2 2 "Ground Hog Day")
  572.     (holiday-fixed 2 14 "Valentine's Day")
  573.     (holiday-float 2 1 3 "President's Day")
  574.     (holiday-fixed 3 17 "St. Patrick's Day")
  575.     (holiday-fixed 4 1 "April Fool's Day")
  576.     (holiday-float 5 0 2 "Mother's Day")
  577.     (holiday-float 5 1 -1 "Memorial Day")
  578.     (holiday-fixed 6 14 "Flag Day")
  579.     (holiday-float 6 0 3 "Father's Day")
  580.     (holiday-fixed 7 4 "Independence Day")
  581.     (holiday-float 9 1 1 "Labor Day")
  582.     (holiday-float 10 1 2 "Columbus Day")
  583.     (holiday-fixed 10 31 "Halloween")
  584.     (holiday-fixed 11 11 "Veteran's Day")
  585.     (holiday-float 11 4 4 "Thanksgiving"))
  586.   "*General holidays.  Default value is for the United States.
  587. See the documentation for `calendar-holidays' for details.")
  588.  
  589. ;;;###autoload
  590. (defvar local-holidays nil
  591.   "*Local holidays.
  592. See the documentation for `calendar-holidays' for details.")
  593.  
  594. ;;;###autoload
  595. (defvar other-holidays nil
  596.   "*User defined holidays.
  597. See the documentation for `calendar-holidays' for details.")
  598.  
  599. ;;;###autoload
  600. (defvar hebrew-holidays
  601.   '((holiday-rosh-hashanah-etc)
  602.     (if all-hebrew-calendar-holidays
  603.         (holiday-julian
  604.          11
  605.          (let* ((m displayed-month)
  606.                 (y displayed-year)
  607.                 (year))
  608.            (increment-calendar-month m y -1)
  609.            (let ((year (extract-calendar-year
  610.                         (calendar-julian-from-absolute
  611.                          (calendar-absolute-from-gregorian
  612.                           (list m 1 y))))))
  613.              (if (zerop (% (1+ year) 4))
  614.                  22
  615.                21))) "\"Tal Umatar\" (evening)"))
  616.     (if all-hebrew-calendar-holidays
  617.         (holiday-hanukkah)
  618.       (holiday-hebrew 9 25 "Hanukkah"))
  619.     (if all-hebrew-calendar-holidays
  620.       (holiday-hebrew
  621.        10
  622.        (let ((h-year (extract-calendar-year
  623.                       (calendar-hebrew-from-absolute
  624.                        (calendar-absolute-from-gregorian
  625.                         (list displayed-month 28 displayed-year))))))
  626.          (if (= (% (calendar-absolute-from-hebrew (list 10 10 h-year))
  627.                    7)
  628.                 6)
  629.              11 10))
  630.        "Tzom Teveth"))
  631.     (if all-hebrew-calendar-holidays
  632.         (holiday-hebrew 11 15 "Tu B'Shevat"))
  633.     (if all-hebrew-calendar-holidays
  634.         (holiday-hebrew
  635.          11
  636.          (let ((m displayed-month)
  637.                (y displayed-year))
  638.            (increment-calendar-month m y 1)
  639.            (let* ((h-year (extract-calendar-year
  640.                            (calendar-hebrew-from-absolute
  641.                             (calendar-absolute-from-gregorian
  642.                              (list m
  643.                                    (calendar-last-day-of-month m y)
  644.                                    y)))))
  645.                   (s-s
  646.                    (calendar-hebrew-from-absolute
  647.                     (if (=
  648.                          (% (calendar-absolute-from-hebrew
  649.                              (list 7 1 h-year))
  650.                             7)
  651.                          6)
  652.                         (calendar-dayname-on-or-before
  653.                          6 (calendar-absolute-from-hebrew
  654.                             (list 11 17 h-year)))
  655.                       (calendar-dayname-on-or-before
  656.                        6 (calendar-absolute-from-hebrew
  657.                           (list 11 16 h-year))))))
  658.                   (day (extract-calendar-day s-s)))
  659.              day))
  660.          "Shabbat Shirah"))
  661.     (holiday-passover-etc)
  662.     (if (and all-hebrew-calendar-holidays
  663.              (let* ((m displayed-month)
  664.                     (y displayed-year)
  665.                     (year))
  666.                (increment-calendar-month m y -1)
  667.                (let ((year (extract-calendar-year
  668.                             (calendar-julian-from-absolute
  669.                              (calendar-absolute-from-gregorian
  670.                               (list m 1 y))))))
  671.                  (= 21 (% year 28)))))
  672.         (holiday-julian 3 26 "Kiddush HaHamah"))
  673.     (if all-hebrew-calendar-holidays
  674.         (holiday-tisha-b-av-etc)))
  675.   "*Jewish holidays.
  676. See the documentation for `calendar-holidays' for details.")
  677.  
  678. ;;;###autoload
  679. (defvar christian-holidays
  680.   '((if all-christian-calendar-holidays
  681.         (holiday-fixed 1 6 "Epiphany"))
  682.     (holiday-easter-etc)
  683.     (if all-christian-calendar-holidays
  684.         (holiday-greek-orthodox-easter))
  685.     (if all-christian-calendar-holidays
  686.         (holiday-fixed 8 15 "Assumption"))
  687.     (if all-christian-calendar-holidays
  688.         (holiday-advent))
  689.     (holiday-fixed 12 25 "Christmas")
  690.     (if all-christian-calendar-holidays
  691.         (holiday-julian 12 25 "Eastern Orthodox Christmas")))
  692.   "*Christian holidays.
  693. See the documentation for `calendar-holidays' for details.")
  694.  
  695. ;;;###autoload
  696. (defvar islamic-holidays
  697.   '((holiday-islamic
  698.      1 1
  699.      (format "Islamic New Year %d"
  700.              (let ((m displayed-month)
  701.                    (y displayed-year))
  702.                (increment-calendar-month m y 1)
  703.                (extract-calendar-year
  704.                 (calendar-islamic-from-absolute
  705.                  (calendar-absolute-from-gregorian
  706.                   (list
  707.                    m (calendar-last-day-of-month m y) y)))))))
  708.     (if all-islamic-calendar-holidays
  709.         (holiday-islamic 1 10 "Ashura"))
  710.     (if all-islamic-calendar-holidays
  711.         (holiday-islamic 3 12 "Mulad-al-Nabi"))
  712.     (if all-islamic-calendar-holidays
  713.         (holiday-islamic 7 26 "Shab-e-Mi'raj"))
  714.     (if all-islamic-calendar-holidays
  715.         (holiday-islamic 8 15 "Shab-e-Bara't"))
  716.     (holiday-islamic 9 1 "Ramadan Begins")
  717.     (if all-islamic-calendar-holidays
  718.         (holiday-islamic 9 27 "Shab-e Qadr"))
  719.     (if all-islamic-calendar-holidays
  720.         (holiday-islamic 10 1 "Id-al-Fitr"))
  721.     (if all-islamic-calendar-holidays
  722.         (holiday-islamic 12 10 "Id-al-Adha")))
  723.   "*Islamic holidays.
  724. See the documentation for `calendar-holidays' for details.")
  725.  
  726. ;;;###autoload
  727. (defvar solar-holidays
  728.   '((if (fboundp 'atan)
  729.     (solar-equinoxes-solstices))
  730.     (progn
  731.       (require 'cal-dst)
  732.       (funcall
  733.        'holiday-sexp 
  734.         calendar-daylight-savings-starts
  735.         '(format "Daylight Savings Time Begins %s"
  736.                   (if (fboundp 'atan)
  737.                       (solar-time-string
  738.                        (/ calendar-daylight-savings-switchover-time
  739.                           (float 60))
  740.                        date
  741.                        'standard)
  742.                     ""))))
  743.     (funcall
  744.      'holiday-sexp
  745.      calendar-daylight-savings-ends
  746.      '(format "Daylight Savings Time Ends %s"
  747.               (if (fboundp 'atan)
  748.                   (solar-time-string
  749.                    (/ (- calendar-daylight-savings-switchover-time
  750.                          calendar-daylight-time-offset)
  751.                       (float 60))
  752.                    date
  753.                    'daylight)
  754.                 ""))))
  755.   "*Sun-related holidays.
  756. See the documentation for `calendar-holidays' for details.")
  757.  
  758. (defvar calendar-holidays
  759.   (append general-holidays local-holidays other-holidays
  760.           christian-holidays hebrew-holidays islamic-holidays
  761.           solar-holidays)
  762.   "*List of notable days for the command M-x holidays.
  763.  
  764. Additional holidays are easy to add to the list, just put them in the list
  765. `other-holidays' in your .emacs file.  Similarly, by setting any of
  766. `general-holidays', `local-holidays' `christian-holidays', `hebrew-holidays',
  767. `islamic-holidays', or `solar-holidays' to nil in your .emacs file, you can
  768. eliminate unwanted categories of holidays.  The intention is that (in the US)
  769. `local-holidays' be set in site-init.el and `other-holidays' be set by the
  770. user.
  771.  
  772. Entries on the list are expressions that return (possibly empty) lists of
  773. items of the form ((month day year) string) of a holiday in the in the
  774. three-month period centered around `displayed-month' of `displayed-year'.
  775. Several basic functions are provided for this purpose:
  776.  
  777.     (holiday-fixed MONTH DAY STRING) is a fixed date on the Gregorian calendar
  778.     (holiday-float MONTH DAYNAME K STRING &optional day) is the Kth DAYNAME in
  779.                                MONTH on the Gregorian calendar (0 for Sunday,
  780.                                etc.); K<0 means count back from the end of the
  781.                                month. An optional parameter DAY means the Kth
  782.                                DAYNAME after/before MONTH DAY.
  783.     (holiday-hebrew MONTH DAY STRING)  a fixed date on the Hebrew calendar
  784.     (holiday-islamic MONTH DAY STRING) a fixed date on the Islamic calendar
  785.     (holiday-julian MONTH DAY STRING)  a fixed date on the Julian calendar
  786.     (holiday-sexp SEXP STRING) SEXP is a Gregorian-date-valued expression
  787.                                in the variable `year'; if it evaluates to
  788.                                a visible date, that's the holiday; if it
  789.                                evaluates to nil, there's no holiday.  STRING
  790.                                is an expression in the variable `date'.
  791.  
  792. For example, to add Bastille Day, celebrated in France on July 14, add
  793.  
  794.      (holiday-fixed 7 14 \"Bastille Day\")
  795.  
  796. to the list.  To add Hurricane Supplication Day, celebrated in the Virgin
  797. Islands on the fourth Monday in August, add
  798.  
  799.      (holiday-float 8 1 4 \"Hurricane Supplication Day\")
  800.  
  801. to the list (the last Monday would be specified with `-1' instead of `4').
  802. To add the last day of Hanukkah to the list, use
  803.  
  804.      (holiday-hebrew 10 2 \"Last day of Hanukkah\")
  805.  
  806. since the Hebrew months are numbered with 1 starting from Nisan, while to
  807. add the Islamic feast celebrating Mohammed's birthday use
  808.  
  809.      (holiday-islamic 3 12 \"Mohammed's Birthday\")
  810.  
  811. since the Islamic months are numbered from 1 starting with Muharram.  To
  812. add Thomas Jefferson's birthday, April 2, 1743 (Julian), use
  813.  
  814.      (holiday-julian 4 2 \"Jefferson's Birthday\")
  815.  
  816. To include a holiday conditionally, use the sexp form or a conditional.  For
  817. example, to include American presidential elections, which occur on the first
  818. Tuesday after the first Monday in November of years divisible by 4, add
  819.  
  820.      (holiday-sexp
  821.        (if (zerop (% year 4))
  822.            (calendar-gregorian-from-absolute
  823.              (1+ (calendar-dayname-on-or-before
  824.                    1 (+ 6 (calendar-absolute-from-gregorian
  825.                             (list 11 1 year)))))))
  826.        \"US Presidential Election\")
  827.  
  828. or
  829.  
  830.      (if (zerop (% displayed-year 4))
  831.          (holiday-fixed 11
  832.                 (extract-calendar-day
  833.                  (calendar-gregorian-from-absolute
  834.                   (1+ (calendar-dayname-on-or-before
  835.                        1 (+ 6 (calendar-absolute-from-gregorian
  836.                                (list 11 1 displayed-year)))))))
  837.                 \"US Presidential Election\"))
  838.  
  839. to the list.  To include the phases of the moon, add
  840.  
  841.      (lunar-phases)
  842.  
  843. to the holiday list, where `lunar-phases' is an Emacs-Lisp function that
  844. you've written to return a (possibly empty) list of the relevant VISIBLE dates
  845. with descriptive strings such as
  846.  
  847.      (((2 6 1989) \"New Moon\") ((2 12 1989) \"First Quarter Moon\") ... ).")
  848.  
  849. (defconst calendar-buffer "*Calendar*"
  850.   "Name of the buffer used for the calendar.")
  851.  
  852. (defconst holiday-buffer "*Holidays*"
  853.   "Name of the buffer used for the displaying the holidays.")
  854.  
  855. (defconst fancy-diary-buffer "*Fancy Diary Entries*"
  856.   "Name of the buffer used for the optional fancy display of the diary.")
  857.  
  858. (defmacro increment-calendar-month (mon yr n)
  859.   "Move the variables MON and YR to the month and year by N months.
  860. Forward if N is positive or backward if N is negative."
  861.   (` (let (( macro-y (+ (* (, yr) 12) (, mon) -1 (, n) )))
  862.        (setq (, mon) (1+ (% macro-y 12) ))
  863.        (setq (, yr) (/ macro-y 12)))))
  864.  
  865. (defmacro calendar-for-loop (var from init to final do &rest body)
  866.   "Execute a for loop."
  867.   (` (let (( (, var) (1- (, init)) ))
  868.        (while (>= (, final) (setq (, var) (1+ (, var))))
  869.          (,@ body)))))
  870.  
  871. (defmacro calendar-sum (index initial condition expression)
  872.   "For INDEX = INITIAL et seq, as long as CONDITION holds, sum EXPRESSION."
  873.   (` (let (( (, index) (, initial))
  874.              (sum 0))
  875.        (while (, condition)
  876.          (setq sum (+ sum (, expression) ))
  877.          (setq (, index) (1+ (, index))))
  878.        sum)))
  879.  
  880. ;; The following macros are for speed; the code would be clearer if they
  881. ;; were functions, but they can be called thousands of times when
  882. ;; looking up holidays or processing the diary.  Here, for example, are the
  883. ;; numbers of calls to calendar/diary/holiday functions in preparing the
  884. ;; fancy diary display, for a moderately complex diary file, with functions
  885. ;; used instead of macros.  There were a total of 10000 such calls:
  886. ;;
  887. ;;  1934   extract-calendar-month
  888. ;;  1852   extract-calendar-year
  889. ;;  1819   extract-calendar-day
  890. ;;   845   calendar-leap-year-p
  891. ;;   837   calendar-day-number
  892. ;;   775   calendar-absolute-from-gregorian
  893. ;;   346   calendar-last-day-of-month
  894. ;;   286   hebrew-calendar-last-day-of-month
  895. ;;   188   hebrew-calendar-leap-year-p
  896. ;;   180   hebrew-calendar-elapsed-days
  897. ;;   163   hebrew-calendar-last-month-of-year
  898. ;;    66   calendar-date-compare
  899. ;;    65   hebrew-calendar-days-in-year
  900. ;;    60   calendar-absolute-from-julian
  901. ;;    50   calendar-absolute-from-hebrew
  902. ;;    43   calendar-date-equal
  903. ;;    38   calendar-gregorian-from-absolute
  904. ;;     .
  905. ;;     .
  906. ;;     .
  907. ;;
  908. ;; The use of these seven macros eliminates the overhead of 92% of the function
  909. ;; calls; it's faster this way.  For clarity, the defun form of each is given
  910. ;; in comments after the defmacro form.
  911.  
  912. (defmacro extract-calendar-month (date)
  913.   "Extract the month part of DATE which has the form (month day year)."
  914.   (` (car (, date))))
  915. ;;(defun extract-calendar-month (date)
  916. ;;  "Extract the month part of DATE which has the form (month day year)."
  917. ;;  (car date))
  918.  
  919. (defmacro extract-calendar-day (date)
  920.   "Extract the day part of DATE which has the form (month day year)."
  921.   (` (car (cdr (, date)))))
  922. ;;(defun extract-calendar-day (date)
  923. ;;  "Extract the day part of DATE which has the form (month day year)."
  924. ;;  (car (cdr date)))
  925.  
  926. (defmacro extract-calendar-year (date)
  927.   "Extract the year part of DATE which has the form (month day year)."
  928.   (` (car (cdr (cdr (, date))))))
  929. ;;(defun extract-calendar-year (date)
  930. ;;  "Extract the year part of DATE which has the form (month day year)."
  931. ;;  (car (cdr (cdr date))))
  932.  
  933. (defmacro calendar-leap-year-p (year)
  934.   "Returns t if YEAR is a Gregorian leap year."
  935.   (` (and
  936.     (zerop (% (, year) 4))
  937.     (or (not (zerop (% (, year) 100)))
  938.         (zerop (% (, year) 400))))))
  939. ;;(defun calendar-leap-year-p (year)
  940. ;;  "Returns t if YEAR is a Gregorian leap year."
  941. ;;  (and
  942. ;;    (zerop (% year 4))
  943. ;;    (or ((not (zerop (% year 100))))
  944. ;;      (zerop (% year 400)))))
  945. ;;
  946. ;; The foregoing is a bit faster, but not as clear as the following:
  947. ;;
  948. ;;(defmacro calendar-leap-year-p (year)
  949. ;;  "Returns t if YEAR is a Gregorian leap year."
  950. ;;  (` (or
  951. ;;        (and (=  (% (, year) 4) 0)
  952. ;;             (/= (% (, year) 100) 0))
  953. ;;        (= (% (, year) 400) 0))))
  954. ;;(defun calendar-leap-year-p (year)
  955. ;;  "Returns t if YEAR is a Gregorian leap year."
  956. ;;  (or
  957. ;;    (and (=  (% year   4) 0)
  958. ;;         (/= (% year 100) 0))
  959. ;;    (= (% year 400) 0)))
  960.  
  961. (defmacro calendar-last-day-of-month (month year)
  962.   "The last day in MONTH during YEAR."
  963.   (` (if (and
  964.             (, (macroexpand (` (calendar-leap-year-p (, year)))))
  965.             (= (, month) 2))
  966.            29
  967.          (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- (, month))))))
  968. ;;(defun calendar-last-day-of-month (month year)
  969. ;;  "The last day in MONTH during YEAR."
  970. ;;  (if (and (calendar-leap-year-p year) (= month 2))
  971. ;;      29
  972. ;;    (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month))))
  973.  
  974. (defmacro calendar-day-number (date)
  975.   "Return the day number within the year of the date DATE.
  976. For example, (calendar-day-number '(1 1 1987)) returns the value 1,
  977. while (calendar-day-number '(12 31 1980)) returns 366."
  978. ;;
  979. ;; An explanation of the calculation can be found in PascAlgorithms by
  980. ;; Edward and Ruth Reingold, Scott-Foresman/Little, Brown, 1988.
  981. ;;
  982.   (` (let* ((month (, (macroexpand (` (extract-calendar-month (, date))))))
  983.             (day (, (macroexpand (` (extract-calendar-day (, date))))))
  984.             (year  (, (macroexpand (` (extract-calendar-year (, date))))))
  985.             (day-of-year (+ day (* 31 (1- month)))))
  986.        (if (> month 2)
  987.            (progn
  988.              (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10)))
  989.             (if (, (macroexpand (` (calendar-leap-year-p year))))
  990.                 (setq day-of-year (1+ day-of-year)))))
  991.        day-of-year)))
  992. ;;(defun calendar-day-number (date)
  993. ;;  "Return the day number within the year of the date DATE.
  994. ;;For example, (calendar-day-number '(1 1 1987)) returns the value 1,
  995. ;;while (calendar-day-number '(12 31 1980)) returns 366."
  996. ;;    (let* ((month (extract-calendar-month date))
  997. ;;           (day (extract-calendar-day date))
  998. ;;           (year (extract-calendar-year date))
  999. ;;         (day-of-year (+ day (* 31 (1- month)))))
  1000. ;;      (if (> month 2)
  1001. ;;          (progn
  1002. ;;            (setq day-of-year (- day-of-year (/ (+ 23 (* 4 month)) 10)))
  1003. ;;            (if (calendar-leap-year-p year)
  1004. ;;                (setq day-of-year (1+ day-of-year)))))
  1005. ;;      day-of-year))
  1006.  
  1007. (defmacro calendar-absolute-from-gregorian (date)
  1008.   "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE.
  1009. The Gregorian date Sunday, December 31, 1 BC is imaginary."
  1010.   (` (let ((year  (, (macroexpand (` (extract-calendar-year (, date)))))))
  1011.        (+ (, (macroexpand (` (calendar-day-number (, date)))));; Days this year
  1012.           (* 365 (1- year));;        + Days in prior years
  1013.           (/ (1- year) 4);;          + Julian leap years
  1014.           (- (/ (1- year) 100));;    - century years
  1015.           (/ (1- year) 400)))));;     + Gregorian leap years
  1016. ;;(defun calendar-absolute-from-gregorian (date)
  1017. ;;  "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE.
  1018. ;;The Gregorian date Sunday, December 31, 1 BC is imaginary."
  1019. ;;  (let ((year (extract-calendar-year date)))
  1020. ;;    (+ (calendar-day-number date);; Days this year
  1021. ;;       (* 365 (1- year));;        + Days in prior years
  1022. ;;       (/ (1- year) 4);;          + Julian leap years
  1023. ;;       (- (/ (1- year) 100));;    - century years
  1024. ;;       (/ (1- year) 400))));;     + Gregorian leap years
  1025.  
  1026. ;;;###autoload
  1027. (defun calendar (&optional arg)
  1028.   "Display a three-month calendar in another window.
  1029. The three months appear side by side, with the current month in the middle
  1030. surrounded by the previous and next months.  The cursor is put on today's date.
  1031.  
  1032. If called with an optional prefix argument, prompts for month and year.
  1033.  
  1034. This function is suitable for execution in a .emacs file; appropriate setting
  1035. of the variable `view-diary-entries-initially' will cause the diary entries for
  1036. the current date to be displayed in another window.  The value of the variable
  1037. `number-of-diary-entries' controls the number of days of diary entries
  1038. displayed upon initial display of the calendar.
  1039.  
  1040. An optional prefix argument ARG causes the calendar displayed to be ARG
  1041. months in the future if ARG is positive or in the past if ARG is negative;
  1042. in this case the cursor goes on the first day of the month.
  1043.  
  1044. Once in the calendar window, future or past months can be moved into view.
  1045. Arbitrary months can be displayed, or the calendar can be scrolled forward
  1046. or backward.
  1047.  
  1048. The cursor can be moved forward or backward by one day, one week, one month,
  1049. or one year.  All of these commands take prefix arguments which, when negative,
  1050. cause movement in the opposite direction.  For convenience, the digit keys
  1051. and the minus sign are automatically prefixes.  The window is replotted as
  1052. necessary to display the desired date.
  1053.  
  1054. Diary entries can be marked on the calendar or displayed in another window.
  1055.  
  1056. Use M-x describe-mode for details of the key bindings in the calendar window.
  1057.  
  1058. The Gregorian calendar is assumed.
  1059.  
  1060. After loading the calendar, the hooks given by the variable
  1061. `calendar-load-hook' are run.  This the place to add key bindings to the
  1062. calendar-mode-map.
  1063.  
  1064. After preparing the calendar window initially, the hooks given by the variable
  1065. `initial-calendar-window-hook' are run.
  1066.  
  1067. The hooks given by the variable `today-visible-calendar-hook' are run
  1068. everytime the calendar window gets scrolled, if the current date is visible
  1069. in the window.  If it is not visible, the hooks given by the variable
  1070. `today-invisible-calendar-hook' are run.  Thus, for example, setting
  1071. `today-visible-calendar-hook' to 'calendar-star-date will cause today's date
  1072. to be replaced by asterisks to highlight it whenever it is in the window."
  1073.   (interactive "P")
  1074.   (set-buffer (get-buffer-create calendar-buffer))
  1075.   (calendar-mode)
  1076.   (setq calendar-window-configuration (current-window-configuration))
  1077.   (let* ((completion-ignore-case t)
  1078.          (pop-up-windows t)
  1079.          (split-height-threshold 1000)
  1080.          (date (calendar-current-date))
  1081.          (month
  1082.           (if arg
  1083.               (cdr (assoc
  1084.                     (capitalize
  1085.                      (completing-read
  1086.                       "Month name: "
  1087.                       (mapcar 'list (append calendar-month-name-array nil))
  1088.                       nil t))
  1089.                     (calendar-make-alist calendar-month-name-array)))
  1090.             (extract-calendar-month date)))
  1091.          (year
  1092.           (if arg
  1093.               (calendar-read
  1094.                "Year (>0): "
  1095.                '(lambda (x) (> x 0))
  1096.                (int-to-string (extract-calendar-year date)))
  1097.             (extract-calendar-year date))))
  1098.     (pop-to-buffer calendar-buffer)
  1099.     (generate-calendar-window month year)
  1100.     (if (and view-diary-entries-initially (calendar-date-is-visible-p date))
  1101.         (view-diary-entries
  1102.          (if (vectorp number-of-diary-entries)
  1103.              (aref number-of-diary-entries (calendar-day-of-week date))
  1104.            number-of-diary-entries))))
  1105.   (let* ((diary-buffer (get-file-buffer diary-file))
  1106.          (diary-window (if diary-buffer (get-buffer-window diary-buffer)))
  1107.          (split-height-threshold (if diary-window 2 1000)))
  1108.     (if view-calendar-holidays-initially
  1109.         (list-calendar-holidays)))
  1110.   (run-hooks 'initial-calendar-window-hook))
  1111.  
  1112. (autoload 'view-diary-entries "diary"
  1113.   "Prepare and display a buffer with diary entries.
  1114. Searches the file diary-file for entries that match ARG days starting with
  1115. the date indicated by the cursor position in the displayed three-month
  1116. calendar."
  1117.   t)
  1118.  
  1119. (autoload 'calendar-sunrise-sunset "solar"
  1120.   "Local time of sunrise and sunset for date under cursor."
  1121.   t)
  1122.  
  1123. (autoload 'calendar-phases-of-moon "lunar"
  1124.   "Create a buffer of the phases of the moon for the current calendar window."
  1125.   t)
  1126.  
  1127. (autoload 'calendar-print-french-date "cal-french"
  1128.   "Show the French Revolutionary calendar equivalent of the date under the
  1129. cursor."
  1130.   t)
  1131.  
  1132. (autoload 'calendar-goto-french-date "cal-french"
  1133.  "Move cursor to French Revolutionary date."
  1134.   t)
  1135.  
  1136. (autoload 'calendar-print-mayan-date "cal-mayan"
  1137.   "Show the Mayan long count, Tzolkin, and Haab equivalents of the date
  1138. under the cursor."
  1139.   t)
  1140.  
  1141. (autoload 'calendar-goto-mayan-long-count-date "cal-mayan"
  1142.  "Move cursor to Mayan long count date."
  1143.   t)
  1144.  
  1145. (autoload 'calendar-next-haab-date "cal-mayan"
  1146.   "Move cursor to next instance of Mayan Haab date."
  1147.   t)
  1148.  
  1149. (autoload 'calendar-previous-haab-date "cal-mayan"
  1150.   "Move cursor to previous instance of Mayan Haab date."
  1151.   t)
  1152.  
  1153. (autoload 'calendar-next-tzolkin-date "cal-mayan"
  1154.   "Move cursor to next instance of Mayan Tzolkin date."
  1155.   t)
  1156.  
  1157. (autoload 'calendar-previous-tzolkin-date "cal-mayan"
  1158.   "Move cursor to previous instance of Mayan Tzolkin date."
  1159.   t)
  1160.  
  1161. (autoload 'calendar-next-calendar-round-date "cal-mayan"
  1162.   "Move cursor to next instance of Mayan Haab/Tzoklin combination."
  1163.   t)
  1164.  
  1165. (autoload 'calendar-previous-calendar-round-date "cal-mayan"
  1166.   "Move cursor to previous instance of Mayan Haab/Tzoklin combination."
  1167.   t)
  1168.  
  1169. (autoload 'show-all-diary-entries "diary"
  1170.   "Show all of the diary entries in the diary-file.
  1171. This function gets rid of the selective display of the diary-file so that
  1172. all entries, not just some, are visible.  If there is no diary buffer, one
  1173. is created."
  1174.   t)
  1175.  
  1176. (autoload 'mark-diary-entries "diary"
  1177.   "Mark days in the calendar window that have diary entries.
  1178. Each entry in diary-file visible in the calendar window is marked."
  1179.   t)
  1180.  
  1181. (autoload 'insert-diary-entry "diary-ins"
  1182.   "Insert a diary entry for the date indicated by point."
  1183.   t)
  1184.  
  1185. (autoload 'insert-weekly-diary-entry "diary-ins"
  1186.   "Insert a weekly diary entry for the day of the week indicated by point."
  1187.   t)
  1188.  
  1189.  
  1190. (autoload 'insert-monthly-diary-entry "diary-ins"
  1191.   "Insert a monthly diary entry for the day of the month indicated by point."
  1192.   t)
  1193.  
  1194. (autoload 'insert-yearly-diary-entry "diary-ins"
  1195.   "Insert an annual diary entry for the day of the year indicated by point."
  1196.   t)
  1197.  
  1198. (autoload 'insert-anniversary-diary-entry "diary-ins"
  1199.   "Insert an anniversary diary entry for the date indicated by point."
  1200.   t)
  1201.  
  1202. (autoload 'insert-block-diary-entry "diary-ins"
  1203.   "Insert a block diary entry for the dates indicated by point and mark."
  1204.   t)
  1205.  
  1206. (autoload 'insert-cyclic-diary-entry "diary-ins"
  1207.   "Insert a cyclic diary entry starting at the date indicated by point."
  1208.   t)
  1209.  
  1210. (autoload 'insert-hebrew-diary-entry "diary-ins"
  1211.   "Insert a diary entry for the Hebrew date corresponding to the date
  1212. indicated by point."
  1213.   t)
  1214.  
  1215. (autoload 'insert-monthly-hebrew-diary-entry "diary-ins"
  1216.   "Insert a monthly diary entry for the day of the Hebrew month corresponding
  1217. to the date indicated by point."
  1218.   t)
  1219.  
  1220. (autoload 'insert-yearly-hebrew-diary-entry "diary-ins"
  1221.   "Insert an annual diary entry for the day of the Hebrew year corresponding
  1222. to the date indicated by point."
  1223.   t)
  1224.  
  1225. (autoload 'insert-islamic-diary-entry "diary-ins"
  1226.   "Insert a diary entry for the Islamic date corresponding to the date
  1227. indicated by point."
  1228.   t)
  1229.  
  1230. (autoload 'insert-monthly-islamic-diary-entry "diary-ins"
  1231.   "Insert a monthly diary entry for the day of the Islamic month corresponding
  1232. to the date indicated by point."
  1233.   t)
  1234.  
  1235. (autoload 'insert-yearly-islamic-diary-entry "diary-ins"
  1236.   "Insert an annual diary entry for the day of the Islamic year corresponding
  1237. to the date indicated by point."
  1238.   t)
  1239.  
  1240. (autoload 'list-calendar-holidays "holidays"
  1241.   "Create a buffer containing the holidays for the current calendar window.
  1242. The holidays are those in the list `calendar-notable-days'.  Returns t if any
  1243. holidays are found, nil if not."
  1244.   t)
  1245.  
  1246. (autoload 'mark-calendar-holidays "holidays"
  1247.   "Mark notable days in the calendar window."
  1248.   t)
  1249.  
  1250. (autoload 'calendar-cursor-holidays "holidays"
  1251.   "Find holidays for the date specified by the cursor in the calendar window."
  1252.   t)
  1253.  
  1254. (defun generate-calendar-window (&optional mon yr)
  1255.   "Generate the calendar window for the current date.
  1256. Or, for optional MON, YR."
  1257.   (let* ((buffer-read-only nil)
  1258.          (today (calendar-current-date))
  1259.          (month (extract-calendar-month today))
  1260.          (day (extract-calendar-day today))
  1261.          (year (extract-calendar-year today))
  1262.          (today-visible
  1263.           (or (not mon)
  1264.               (let ((offset (calendar-interval mon yr month year)))
  1265.                 (and (<= offset 1) (>= offset -1)))))
  1266.          (day-in-week (calendar-day-of-week today)))
  1267.     (update-calendar-mode-line)
  1268.     (if mon
  1269.         (generate-calendar mon yr)
  1270.         (generate-calendar month year))
  1271.     (calendar-cursor-to-visible-date
  1272.      (if today-visible today (list displayed-month 1 displayed-year)))
  1273.     (set-buffer-modified-p nil)
  1274.     (or (one-window-p t)
  1275.         (/= (frame-width) (window-width))
  1276.         (shrink-window (- (window-height) 9)))
  1277.     (sit-for 0)
  1278.     (and mark-holidays-in-calendar
  1279.          (mark-calendar-holidays)
  1280.          (sit-for 0))
  1281.     (unwind-protect
  1282.         (if mark-diary-entries-in-calendar (mark-diary-entries))
  1283.       (if today-visible
  1284.           (run-hooks 'today-visible-calendar-hook)
  1285.         (run-hooks 'today-invisible-calendar-hook)))))
  1286.  
  1287. (defun generate-calendar (month year)
  1288.   "Generate a three-month Gregorian calendar centered around MONTH, YEAR."
  1289.   (if (< (+ month (* 12 (1- year))) 2)
  1290.       (error "Months before February, 1 AD are not available."))
  1291.   (setq displayed-month month)
  1292.   (setq displayed-year year)
  1293.   (erase-buffer)
  1294.   (increment-calendar-month month year -1)
  1295.   (calendar-for-loop i from 0 to 2 do
  1296.        (generate-calendar-month month year (+ 5 (* 25 i)))
  1297.        (increment-calendar-month month year 1)))
  1298.  
  1299. (defun generate-calendar-month (month year indent)
  1300.   "Produce a calendar for MONTH, YEAR on the Gregorian calendar.
  1301. The calendar is inserted in the buffer starting at the line on which point
  1302. is currently located, but indented INDENT spaces.  The indentation is done
  1303. from the first character on the line and does not disturb the first INDENT
  1304. characters on the line."
  1305.   (let* ((first-day-of-month (calendar-day-of-week (list month 1 year)))
  1306.          (first-saturday (- 7 first-day-of-month))
  1307.          (last (calendar-last-day-of-month month year))
  1308.          (heading (format "%s %d" (calendar-month-name month) year)))
  1309.     (goto-char (point-min))
  1310.     (calendar-insert-indented
  1311.      heading (+ indent (/ (- 20 (length heading)) 2)) t)
  1312.     (calendar-insert-indented " S  M Tu  W Th  F  S" indent t)
  1313.     (calendar-insert-indented "" indent);; Move to appropriate spot on line
  1314.     ;; Add blank days before the first of the month
  1315.     (calendar-for-loop i from 1 to first-day-of-month do
  1316.         (insert "   "))
  1317.     ;; Put in the days of the month
  1318.     (calendar-for-loop i from 1 to last do
  1319.          (insert (format "%2d " i))
  1320.          (and (= (% i 7) (% first-saturday 7))
  1321.               (/= i last)
  1322.               (calendar-insert-indented "" 0 t)    ;; Force onto following line
  1323.               (calendar-insert-indented "" indent)))));; Go to proper spot
  1324.  
  1325. (defun calendar-insert-indented (string indent &optional newline)
  1326.   "Insert STRING at column INDENT.
  1327. If the optional parameter NEWLINE is t, leave point at start of next line,
  1328. inserting a newline if there was no next line; otherwise, leave point after
  1329. the inserted text.  Value is always t."
  1330.   ;; Try to move to that column.
  1331.   (move-to-column indent)
  1332.   ;; If line is too short, indent out to that column.
  1333.   (if (< (current-column) indent)
  1334.       (indent-to indent))
  1335.   (insert string)
  1336.   ;; Advance to next line, if requested.
  1337.   (if newline
  1338.       (progn
  1339.     (end-of-line)
  1340.     (if (eobp)
  1341.             (newline)
  1342.       (forward-line 1))))
  1343.   t)
  1344.  
  1345. (defun redraw-calendar ()
  1346.   "Redraw the calendar display."
  1347.   (interactive)
  1348.   (let ((cursor-date (calendar-cursor-to-date)))
  1349.     (generate-calendar-window displayed-month displayed-year)
  1350.     (calendar-cursor-to-visible-date cursor-date)))
  1351.  
  1352. (defvar calendar-debug-sexp nil
  1353.   "*Turn debugging on when evaluating a sexp in the diary or holiday list.")
  1354.  
  1355. (defvar calendar-mode-map nil)
  1356. (if calendar-mode-map
  1357.     nil
  1358.   (setq calendar-mode-map (make-sparse-keymap))
  1359.   (calendar-for-loop i from 0 to 9 do
  1360.        (define-key calendar-mode-map (int-to-string i) 'digit-argument))
  1361.   (let ((l (list 'narrow-to-region 'mark-word 'mark-sexp 'mark-paragraph
  1362.                  'mark-defun 'mark-whole-buffer 'mark-page 'kill-region
  1363.                  'copy-region-as-kill 'downcase-region 'upcase-region
  1364.                  'capitalize-region 'write-region)))
  1365.     (while (car l)
  1366.       (let ((k (where-is-internal (car l))))
  1367.         (while (car k)
  1368.           (define-key calendar-mode-map (car k) 'calendar-not-implemented)
  1369.           (setq k (cdr k)))
  1370.         (setq l (cdr l)))))
  1371.   (define-key calendar-mode-map "-"     'negative-argument)
  1372.   (define-key calendar-mode-map "\C-x>" 'scroll-calendar-right)
  1373.   (define-key calendar-mode-map "\ev"   'scroll-calendar-right-three-months)
  1374.   (define-key calendar-mode-map "\C-x<" 'scroll-calendar-left)
  1375.   (define-key calendar-mode-map "\C-v"  'scroll-calendar-left-three-months)
  1376.   (define-key calendar-mode-map "\C-b"  'calendar-backward-day)
  1377.   (define-key calendar-mode-map "\C-p"  'calendar-backward-week)
  1378.   (define-key calendar-mode-map "\e{"   'calendar-backward-month)
  1379.   (define-key calendar-mode-map "\C-x[" 'calendar-backward-year)
  1380.   (define-key calendar-mode-map "\C-f"  'calendar-forward-day)
  1381.   (define-key calendar-mode-map "\C-n"  'calendar-forward-week)
  1382.   (define-key calendar-mode-map [left]  'calendar-backward-day)
  1383.   (define-key calendar-mode-map [up]    'calendar-backward-week)
  1384.   (define-key calendar-mode-map [right] 'calendar-forward-day)
  1385.   (define-key calendar-mode-map [down]  'calendar-forward-week)
  1386.   (define-key calendar-mode-map "\e}"   'calendar-forward-month)
  1387.   (define-key calendar-mode-map "\C-x]" 'calendar-forward-year)
  1388.   (define-key calendar-mode-map "\C-a"  'calendar-beginning-of-week)
  1389.   (define-key calendar-mode-map "\C-e"  'calendar-end-of-week)
  1390.   (define-key calendar-mode-map "\ea"   'calendar-beginning-of-month)
  1391.   (define-key calendar-mode-map "\ee"   'calendar-end-of-month)
  1392.   (define-key calendar-mode-map "\e<"   'calendar-beginning-of-year)
  1393.   (define-key calendar-mode-map "\e>"   'calendar-end-of-year)
  1394.   (define-key calendar-mode-map "\C-@"  'calendar-set-mark)
  1395.   (define-key calendar-mode-map "\C-x\C-x" 'calendar-exchange-point-and-mark)
  1396.   (define-key calendar-mode-map "\e=" 'calendar-count-days-region)
  1397.   (define-key calendar-mode-map "gd"  'calendar-goto-date)
  1398.   (define-key calendar-mode-map "gj"  'calendar-goto-julian-date)
  1399.   (define-key calendar-mode-map "ga"  'calendar-goto-astro-day-number)
  1400.   (define-key calendar-mode-map "gh"  'calendar-goto-hebrew-date)
  1401.   (define-key calendar-mode-map "gi"  'calendar-goto-islamic-date)
  1402.   (define-key calendar-mode-map "gc"  'calendar-goto-iso-date)
  1403.   (define-key calendar-mode-map "gf"  'calendar-goto-french-date)
  1404.   (define-key calendar-mode-map "gml"  'calendar-goto-mayan-long-count-date)
  1405.   (define-key calendar-mode-map "gmpc" 'calendar-previous-calendar-round-date)
  1406.   (define-key calendar-mode-map "gmnc" 'calendar-next-calendar-round-date)
  1407.   (define-key calendar-mode-map "gmph" 'calendar-previous-haab-date)
  1408.   (define-key calendar-mode-map "gmnh" 'calendar-next-haab-date)
  1409.   (define-key calendar-mode-map "gmpt" 'calendar-previous-tzolkin-date)
  1410.   (define-key calendar-mode-map "gmnt" 'calendar-next-tzolkin-date)
  1411.   (define-key calendar-mode-map "S"   'calendar-sunrise-sunset)
  1412.   (define-key calendar-mode-map "M"   'calendar-phases-of-moon)
  1413.   (define-key calendar-mode-map " "   'scroll-other-window)
  1414.   (define-key calendar-mode-map "\C-c\C-l" 'redraw-calendar)
  1415.   (define-key calendar-mode-map "."   'calendar-current-month)
  1416.   (define-key calendar-mode-map "o"   'calendar-other-month)
  1417.   (define-key calendar-mode-map "q"   'exit-calendar)
  1418.   (define-key calendar-mode-map "a"   'list-calendar-holidays)
  1419.   (define-key calendar-mode-map "h"   'calendar-cursor-holidays)
  1420.   (define-key calendar-mode-map "x"   'mark-calendar-holidays)
  1421.   (define-key calendar-mode-map "u"   'calendar-unmark)
  1422.   (define-key calendar-mode-map "m"   'mark-diary-entries)
  1423.   (define-key calendar-mode-map "d"   'view-diary-entries)
  1424.   (define-key calendar-mode-map "s"   'show-all-diary-entries)
  1425.   (define-key calendar-mode-map "pd"  'calendar-print-day-of-year)
  1426.   (define-key calendar-mode-map "pc"  'calendar-print-iso-date)
  1427.   (define-key calendar-mode-map "pj"  'calendar-print-julian-date)
  1428.   (define-key calendar-mode-map "pa"  'calendar-print-astro-day-number)
  1429.   (define-key calendar-mode-map "ph"  'calendar-print-hebrew-date)
  1430.   (define-key calendar-mode-map "pi"  'calendar-print-islamic-date)
  1431.   (define-key calendar-mode-map "pf"  'calendar-print-french-date)
  1432.   (define-key calendar-mode-map "pm"  'calendar-print-mayan-date)
  1433.   (define-key calendar-mode-map "id"  'insert-diary-entry)
  1434.   (define-key calendar-mode-map "iw"  'insert-weekly-diary-entry)
  1435.   (define-key calendar-mode-map "im"  'insert-monthly-diary-entry)
  1436.   (define-key calendar-mode-map "iy"  'insert-yearly-diary-entry)
  1437.   (define-key calendar-mode-map "ia"  'insert-anniversary-diary-entry)
  1438.   (define-key calendar-mode-map "ib"  'insert-block-diary-entry)
  1439.   (define-key calendar-mode-map "ic"  'insert-cyclic-diary-entry)
  1440.   (define-key calendar-mode-map "ihd" 'insert-hebrew-diary-entry)
  1441.   (define-key calendar-mode-map "ihm" 'insert-monthly-hebrew-diary-entry)
  1442.   (define-key calendar-mode-map "ihy" 'insert-yearly-hebrew-diary-entry)
  1443.   (define-key calendar-mode-map "iid" 'insert-islamic-diary-entry)
  1444.   (define-key calendar-mode-map "iim" 'insert-monthly-islamic-diary-entry)
  1445.   (define-key calendar-mode-map "iiy" 'insert-yearly-islamic-diary-entry)
  1446.   (define-key calendar-mode-map "?"   'describe-calendar-mode))
  1447.  
  1448. (defun describe-calendar-mode ()
  1449.   "Create a help buffer with a brief description of the calendar-mode."
  1450.   (interactive)
  1451.   (with-output-to-temp-buffer "*Help*"
  1452.     (princ
  1453.      (format
  1454.       "Calendar Mode:\nFor a complete description, type %s\n%s\n"
  1455.       (substitute-command-keys
  1456.        "\\<calendar-mode-map>\\[describe-mode] from within the calendar")
  1457.       (substitute-command-keys "\\{calendar-mode-map}")))
  1458.     (print-help-return-message)))
  1459.  
  1460. ;; Calendar mode is suitable only for specially formatted data.
  1461. (put 'calendar-mode 'mode-class 'special)
  1462.  
  1463. (defvar calendar-mode-line-format
  1464.   (list
  1465.    (substitute-command-keys "\\<calendar-mode-map>\\[scroll-calendar-left]")
  1466.    "Calendar"
  1467.    (substitute-command-keys "\\<calendar-mode-map>\\[describe-calendar-mode] help/\\[calendar-other-month] other/\\[calendar-current-month] current")
  1468.    '(calendar-date-string (calendar-current-date) t)
  1469.    (substitute-command-keys "\\<calendar-mode-map>\\[scroll-calendar-right]"))
  1470.   "The mode line of the calendar buffer.")
  1471.  
  1472. (defun calendar-mode ()
  1473.   "A major mode for the calendar window.
  1474.  
  1475. The commands for cursor movement are:\\<calendar-mode-map>
  1476.  
  1477.        \\[calendar-forward-day]  one day forward           \\[calendar-backward-day]  one day backward
  1478.        \\[calendar-forward-week]  one week forward          \\[calendar-backward-week]  one week backward
  1479.        \\[calendar-forward-month]  one month forward       \\[calendar-backward-month]  one month backward
  1480.        \\[calendar-forward-year]  one year forward        \\[calendar-backward-year]  one year backward
  1481.        \\[calendar-beginning-of-week]  beginning of week         \\[calendar-end-of-week]  end of week
  1482.        \\[calendar-beginning-of-month]  beginning of month      \\[calendar-end-of-month]  end of month
  1483.        \\[calendar-beginning-of-year]  beginning of year       \\[calendar-end-of-year]  end of year
  1484.  
  1485.        \\[calendar-goto-date]  go to date
  1486.  
  1487.        \\[calendar-goto-julian-date]  go to Julian date         \\[calendar-goto-astro-day-number]  go to astronomical (Julian) day number
  1488.        \\[calendar-goto-hebrew-date]  go to Hebrew date         \\[calendar-goto-islamic-date]  go to Islamic date
  1489.        \\[calendar-goto-iso-date]  go to ISO date            \\[calendar-goto-french-date]  go to French Revolutionary date
  1490.  
  1491.        \\[calendar-goto-mayan-long-count-date]  go to Mayan Long Count date
  1492.        \\[calendar-next-haab-date]  go to next occurrence of Mayan Haab date
  1493.        \\[calendar-previous-haab-date]  go to previous occurrence of Mayan Haab date
  1494.        \\[calendar-next-tzolkin-date]  go to next occurrence of Mayan Tzolkin date
  1495.        \\[calendar-previous-tzolkin-date]  go to previous occurrence of Mayan Tzolkin date
  1496.        \\[calendar-next-calendar-round-date]  go to next occurrence of Mayan Calendar Round date
  1497.        \\[calendar-previous-calendar-round-date]  go to previous occurrence of Mayan Calendar Round date
  1498.  
  1499. You can mark a date in the calendar and switch the point and mark:
  1500.  
  1501.        \\[calendar-set-mark]  mark date                 \\[calendar-exchange-point-and-mark]  exchange point and mark
  1502.  
  1503. You can determine the number of days (inclusive) between the point and mark by
  1504.  
  1505.        \\[calendar-count-days-region]  count days in the region
  1506.  
  1507. The commands for calendar movement are:
  1508.  
  1509.        \\[scroll-calendar-right]  scroll one month right   \\[scroll-calendar-left]  scroll one month left
  1510.        \\[scroll-calendar-right-three-months]  scroll 3 months right    \\[scroll-calendar-left-three-months]  scroll 3 months left
  1511.        \\[calendar-current-month]  display current month        \\[calendar-other-month]  display another month
  1512.  
  1513. Whenever it makes sense, the above commands take prefix arguments that
  1514. multiply their affect.  For convenience, the digit keys and the minus sign
  1515. are bound to digit-argument, so they need not be prefixed with ESC.
  1516.  
  1517. If the calendar window somehow becomes corrupted, it can be regenerated with
  1518.  
  1519.        \\[redraw-calendar]  redraw the calendar
  1520.  
  1521. The following commands deal with holidays and other notable days:
  1522.  
  1523.        \\[calendar-cursor-holidays]  give holidays for the date specified by the cursor
  1524.        \\[mark-calendar-holidays]  mark notable days
  1525.        \\[calendar-unmark]  unmark dates
  1526.        \\[list-calendar-holidays]  display notable days
  1527.  
  1528. The command M-x holidays causes the notable dates for the current month, and
  1529. the preceding and succeeding months, to be displayed, independently of the
  1530. calendar.
  1531.  
  1532. The following commands control the diary:
  1533.  
  1534.        \\[mark-diary-entries]  mark diary entries          \\[calendar-unmark]  unmark dates
  1535.        \\[view-diary-entries]  display diary entries       \\[show-all-diary-entries]  show all diary entries
  1536.        \\[print-diary-entries]  print diary entries
  1537.  
  1538. Displaying the diary entries causes the diary entries from the diary-file
  1539. \(for the date indicated by the cursor in the calendar window) to be
  1540. displayed in another window.  This function takes an integer argument that
  1541. specifies the number of days of calendar entries to be displayed, starting
  1542. with the date indicated by the cursor.
  1543.  
  1544. The command \\[print-diary-entries] prints the diary buffer (as it appears)
  1545. on the line printer.
  1546.  
  1547. The command M-x diary causes the diary entries for the current date to be
  1548. displayed, independently of the calendar.  The number of days of entries is
  1549. governed by number-of-diary-entries.
  1550.  
  1551. The format of the entries in the diary file is described in the
  1552. documentation string for the variable diary-file.
  1553.  
  1554. When diary entries are in view in the window, they can be edited.  It is
  1555. important to keep in mind that the buffer displayed contains the entire
  1556. diary file, but with portions of it concealed from view.  This means, for
  1557. instance, that the forward-char command can put the cursor at what appears
  1558. to be the end of the line, but what is in reality the middle of some
  1559. concealed line.  BE CAREFUL WHEN EDITING THE DIARY ENTRIES! (Inserting
  1560. additional lines or adding/deleting characters in the middle of a visible
  1561. line will not cause problems; watch out for end-of-line, however--it may
  1562. put you at the end of a concealed line far from where the cursor appears to
  1563. be!)  BEFORE EDITING THE DIARY IT IS BEST TO DISPLAY THE ENTIRE FILE WITH
  1564. show-all-diary-entries.  BE SURE TO WRITE THE FILE BEFORE EXITING FROM THE
  1565. CALENDAR.
  1566.  
  1567. The following commands assist in making diary entries:
  1568.  
  1569.        \\[insert-diary-entry]  insert a diary entry for the selected date
  1570.        \\[insert-weekly-diary-entry]  insert a diary entry for the selected day of the week
  1571.        \\[insert-monthly-diary-entry]  insert a diary entry for the selected day of the month
  1572.        \\[insert-yearly-diary-entry]  insert a diary entry for the selected day of the year
  1573.        \\[insert-block-diary-entry]  insert a diary entry for the block days between point and mark
  1574.        \\[insert-anniversary-diary-entry]  insert an anniversary diary entry for the selected date
  1575.        \\[insert-cyclic-diary-entry]  insert a cyclic diary entry
  1576.  
  1577. There are corresponding commands to assist in making Hebrew- or Islamic-date
  1578. diary entries:
  1579.  
  1580.        \\[insert-hebrew-diary-entry]  insert a diary entry for the Hebrew date corresponding
  1581.                 to the selected date
  1582.        \\[insert-monthly-hebrew-diary-entry]  insert a diary entry for the day of the Hebrew month
  1583.                 corresponding to the selected day
  1584.        \\[insert-yearly-hebrew-diary-entry]  insert a diary entry for the day of the Hebrew year
  1585.                 corresponding to the selected day
  1586.        \\[insert-islamic-diary-entry]  insert a diary entry for the Islamic date corresponding
  1587.                 to the selected date
  1588.        \\[insert-monthly-islamic-diary-entry]  insert a diary entry for the day of the Islamic month
  1589.                 corresponding to the selected day
  1590.        \\[insert-yearly-islamic-diary-entry]  insert a diary entry for the day of the Islamic year
  1591.                 corresponding to the selected day
  1592.  
  1593. All of the diary entry commands make nonmarking entries when given a prefix
  1594. argument; with no prefix argument, the diary entries are marking.
  1595.  
  1596. The day number in the year and the number of days remaining in the year can be
  1597. determined by
  1598.  
  1599.        \\[calendar-print-day-of-year]  show day number and the number of days remaining in the year
  1600.  
  1601. Equivalent dates on the ISO commercial, Julian, Hebrew, Islamic, French
  1602. Revolutionary, and Mayan calendars can be determined by
  1603.  
  1604.        \\[calendar-print-iso-date]  show equivalent date on the ISO commercial calendar
  1605.        \\[calendar-print-julian-date]  show equivalent date on the Julian calendar
  1606.        \\[calendar-print-hebrew-date]  show equivalent date on the Hebrew calendar
  1607.        \\[calendar-print-islamic-date]  show equivalent date on the Islamic calendar
  1608.        \\[calendar-print-french-date]  show equivalent date on the French Revolutionary calendar
  1609.        \\[calendar-print-mayan-date]  show equivalent date on the Mayan calendar
  1610.  
  1611. The astronomical (Julian) day number of a date is found with
  1612.  
  1613.        \\[calendar-print-astro-day-number]  show equivalent astronomical (Julian) day number
  1614.  
  1615. To find the times of sunrise and sunset and lunar phases use
  1616.  
  1617.        \\[calendar-sunrise-sunset]  show times of sunrise and sunset
  1618.        \\[calendar-phases-of-moon]  show times of quarters of the moon
  1619.  
  1620. The times given will be at latitude `solar-latitude', longitude
  1621. `solar-longitude' in time zone `solar-time-zone'.  These variables, and the
  1622. variables `solar-location-name', `solar-standard-time-zone-name',
  1623. `solar-daylight-time-zone-name', `solar-daylight-savings-starts',
  1624. `solar-daylight-savings-ends', `calendar-daylight-time-offset',
  1625. and `calendar-daylight-savings-switchover-time' should be set for
  1626. your location.
  1627.  
  1628. To exit from the calendar use
  1629.  
  1630.        \\[exit-calendar]  exit from calendar
  1631.  
  1632. The variable `view-diary-entries-initially', whose default is nil, can be
  1633. set to to t cause diary entries for the current date will be displayed in
  1634. another window when the calendar is first displayed, if the current date is
  1635. visible.  The variable `number-of-diary-entries' controls number of days of
  1636. diary entries that will be displayed initially or with the command M-x
  1637. diary.  For example, if the default value 1 is used, then only the current
  1638. day's diary entries will be displayed.  If the value 2 is used, both the
  1639. current day's and the next day's entries will be displayed.  The value can
  1640. also be a vector: If the value is [0 2 2 2 2 4 1] then no diary entries
  1641. will be displayed on Sunday, the current date's and the next day's diary
  1642. entries will be displayed Monday through Thursday, Friday through Monday's
  1643. entries will be displayed on Friday, while on Saturday only that day's
  1644. entries will be displayed.
  1645.  
  1646. The variable `view-calendar-holidays-initially' can be set to t to cause the
  1647. holidays for the current three month period will be displayed on entry to the
  1648. calendar.  The holidays are displayed in another window.
  1649.  
  1650. The variable `mark-diary-entries-in-calendar' can be set to t to cause any
  1651. dates visible with calendar entries to be marked with the symbol specified by
  1652. the variable `diary-entry-marker', normally a plus sign.
  1653.  
  1654. The variable `calendar-load-hook', whose default value is nil, is list of
  1655. functions to be called when the calendar is first loaded.
  1656.  
  1657. The variable `initial-calendar-window-hook', whose default value is nil, is
  1658. list of functions to be called when the calendar window is first opened.  The
  1659. functions invoked are called after the calendar window is opened, but once
  1660. opened is never called again.  Leaving the calendar with the `q' command and
  1661. reentering it will cause these functions to be called again.
  1662.  
  1663. The variable `today-visible-calendar-hook', whose default value is nil, is the
  1664. list of functions called after the calendar buffer has been prepared with the
  1665. calendar when the current date is visible in the window.  This can be used,
  1666. for example, to replace today's date with asterisks; a function
  1667. calendar-star-date is included for this purpose: (setq
  1668. today-visible-calendar-hook 'calendar-star-date) It could also be used to mark
  1669. the current date with `*'; a function is also provided for this: (setq
  1670. today-visible-calendar-hook 'calendar-mark-today)
  1671.  
  1672. The variable `today-invisible-calendar-hook', whose default value is nil, is
  1673. the list of functions called after the calendar buffer has been prepared with
  1674. the calendar when the current date is not visible in the window.
  1675.  
  1676. The variable `diary-display-hook' is the list of functions called after the
  1677. diary buffer is prepared.  The default value simply displays the diary file
  1678. using selective-display to conceal irrelevant diary entries.  An alternative
  1679. function `fancy-diary-display' is provided that, when used as the
  1680. `diary-display-hook', causes a noneditable buffer to be prepared with a neatly
  1681. organized day-by-day listing of relevant diary entries, together with any
  1682. known holidays.  The inclusion of the holidays slows this fancy display of the
  1683. diary; to speed it up, set the variable `holidays-in-diary-buffer' to nil.
  1684.  
  1685. The variable `print-diary-entries-hook' is the list of functions called after
  1686. a temporary buffer is prepared with the diary entries currently visible in the
  1687. diary buffer.  The default value of this hook adds a heading (composed from
  1688. the diary buffer's mode line), does the printing with the command lpr-buffer,
  1689. and kills the temporary buffer.  Other uses might include, for example,
  1690. rearranging the lines into order by day and time.
  1691.  
  1692. The Gregorian calendar is assumed."
  1693.  
  1694.   (kill-all-local-variables)
  1695.   (setq major-mode 'calendar-mode)
  1696.   (setq mode-name "Calendar")
  1697.   (use-local-map calendar-mode-map)
  1698.   (setq buffer-read-only t)
  1699.   (setq indent-tabs-mode nil)
  1700.   (update-calendar-mode-line)
  1701.   (make-local-variable 'calendar-window-configuration);; Windows on entry.
  1702.   (make-local-variable 'calendar-mark-ring)
  1703.   (make-local-variable 'displayed-month);;  Month in middle of window.
  1704.   (make-local-variable 'displayed-year));;  Year in middle of window.
  1705.  
  1706. (defun calendar-string-spread (strings char length)
  1707.   "Concatenate list of STRINGS separated with copies of CHAR to fill LENGTH
  1708. There must be at least 2 strings.  The effect is like mapconcat but the
  1709. separating pieces are as balanced as possible.  Each item of STRINGS is
  1710. evaluated before concatenation so it can actually be an expression that
  1711. evaluates to a string.  If LENGTH is too short, the STRINGS are just
  1712. concatenated and the result truncated."
  1713. ;; The algorithm is based on equation (3.25) on page 85 of Concrete
  1714. ;; Mathematics by Ronald L. Graham, Donald E. Knuth, and Oren Patashnik,
  1715. ;; Addison-Wesley, Reading, MA, 1989
  1716.   (let* ((strings (mapcar 'eval strings))
  1717.          (n (- length (length (apply 'concat strings))))
  1718.          (m (1- (length strings)))
  1719.          (s (car strings))
  1720.          (strings (cdr strings))
  1721.          (i 0))
  1722.     (while strings
  1723.       (setq s (concat s
  1724.                       (make-string (max 0 (/ (+ n i) m)) char)
  1725.                       (car strings)))
  1726.       (setq i (1+ i))
  1727.       (setq strings (cdr strings)))
  1728.     (substring s 0 length)))
  1729.  
  1730. (defun update-calendar-mode-line ()
  1731.   "Update the calendar mode line with the current date and date style."
  1732.   (if (bufferp (get-buffer calendar-buffer))
  1733.       (save-excursion
  1734.         (set-buffer calendar-buffer)
  1735.         (setq mode-line-format
  1736.               (calendar-string-spread
  1737.                calendar-mode-line-format ?  (frame-width))))))
  1738.  
  1739. (defun exit-calendar ()
  1740.   "Get out of the calendar window and bury it and related buffers."
  1741.   (interactive)
  1742.   (let ((diary-buffer (get-file-buffer diary-file))
  1743.         (d-buffer (get-buffer fancy-diary-buffer))
  1744.         (h-buffer (get-buffer holiday-buffer)))
  1745.     (if (not diary-buffer)
  1746.         (progn
  1747.           (set-window-configuration calendar-window-configuration)
  1748.           (bury-buffer calendar-buffer)
  1749.           (if d-buffer (bury-buffer d-buffer))
  1750.           (if h-buffer (bury-buffer h-buffer)))
  1751.       (if (or (not (buffer-modified-p diary-buffer))
  1752.               (yes-or-no-p "Diary modified; do you really want to exit the calendar? "))
  1753.           (progn
  1754.             (set-window-configuration calendar-window-configuration)
  1755.             (bury-buffer calendar-buffer)
  1756.             (if d-buffer (bury-buffer d-buffer))
  1757.             (if h-buffer (bury-buffer h-buffer))
  1758.             (set-buffer diary-buffer)
  1759.             (set-buffer-modified-p nil)
  1760.             (bury-buffer diary-buffer))))))
  1761.  
  1762. (defun calendar-current-month ()
  1763.   "Reposition the calendar window so the current date is visible."
  1764.   (interactive)
  1765.   (let ((today (calendar-current-date)));; The date might have changed.
  1766.     (if (not (calendar-date-is-visible-p today))
  1767.         (generate-calendar-window)
  1768.       (update-calendar-mode-line)
  1769.       (calendar-cursor-to-visible-date today))))
  1770.  
  1771. (defun calendar-forward-month (arg)
  1772.   "Move the cursor forward ARG months.
  1773. Movement is backward if ARG is negative."
  1774.   (interactive "p")
  1775.   (calendar-cursor-to-nearest-date)
  1776.   (let* ((cursor-date (or (calendar-cursor-to-date)
  1777.                           (error "Cursor is not on a date!")))
  1778.          (month (extract-calendar-month cursor-date))
  1779.          (day (extract-calendar-day cursor-date))
  1780.          (year (extract-calendar-year cursor-date)))
  1781.     (increment-calendar-month month year arg)
  1782.     (let ((last (calendar-last-day-of-month month year)))
  1783.       (if (< last day)
  1784.         (setq day last)))
  1785.     ;; Put the new month on the screen, if needed, and go to the new date.
  1786.     (let ((new-cursor-date (list month day year)))
  1787.       (if (not (calendar-date-is-visible-p new-cursor-date))
  1788.           (calendar-other-month month year))
  1789.       (calendar-cursor-to-visible-date new-cursor-date))))
  1790.  
  1791. (defun calendar-forward-year (arg)
  1792.   "Move the cursor forward by ARG years.
  1793. Movement is backward if ARG is negative."
  1794.   (interactive "p")
  1795.   (calendar-forward-month (* 12 arg)))
  1796.  
  1797. (defun calendar-backward-month (arg)
  1798.   "Move the cursor backward by ARG months.
  1799. Movement is forward if ARG is negative."
  1800.   (interactive "p")
  1801.   (calendar-forward-month (- arg)))
  1802.  
  1803. (defun calendar-backward-year (arg)
  1804.   "Move the cursor backward ARG years.
  1805. Movement is forward is ARG is negative."
  1806.   (interactive "p")
  1807.   (calendar-forward-month (* -12 arg)))
  1808.  
  1809. (defun scroll-calendar-left (arg)
  1810.   "Scroll the displayed calendar left by ARG months.
  1811. If ARG is negative the calendar is scrolled right.  Maintains the relative
  1812. position of the cursor with respect to the calendar as well as possible."
  1813.   (interactive "p")
  1814.   (calendar-cursor-to-nearest-date)
  1815.   (let ((old-date (calendar-cursor-to-date))
  1816.         (today (calendar-current-date)))
  1817.     (if (/= arg 0)
  1818.         (progn
  1819.           (increment-calendar-month displayed-month displayed-year arg)
  1820.           (generate-calendar-window displayed-month displayed-year)
  1821.           (calendar-cursor-to-visible-date
  1822.            (cond
  1823.             ((calendar-date-is-visible-p old-date) old-date)
  1824.             ((calendar-date-is-visible-p today) today)
  1825.             (t (list displayed-month 1 displayed-year))))))))
  1826.  
  1827. (defun scroll-calendar-right (arg)
  1828.   "Scroll the displayed calendar window right by ARG months.
  1829. If ARG is negative the calendar is scrolled left.  Maintains the relative
  1830. position of the cursor with respect to the calendar as well as possible."
  1831.   (interactive "p")
  1832.   (scroll-calendar-left (- arg)))
  1833.  
  1834. (defun scroll-calendar-left-three-months (arg)
  1835.   "Scroll the displayed calendar window left by 3*ARG months.
  1836. If ARG is negative the calendar is scrolled right.  Maintains the relative
  1837. position of the cursor with respect to the calendar as well as possible."
  1838.   (interactive "p")
  1839.   (scroll-calendar-left (* 3 arg)))
  1840.  
  1841. (defun scroll-calendar-right-three-months (arg)
  1842.   "Scroll the displayed calendar window right by 3*ARG months.
  1843. If ARG is negative the calendar is scrolled left.  Maintains the relative
  1844. position of the cursor with respect to the calendar as well as possible."
  1845.   (interactive "p")
  1846.   (scroll-calendar-left (* -3 arg)))
  1847.  
  1848. (defun calendar-current-date ()
  1849.   "Returns the current date in a list (month day year).
  1850. If in the calendar buffer, also sets the current date local variables."
  1851.   (let* ((date (current-time-string))
  1852.          (garbage
  1853.           (string-match
  1854.            "^\\([A-Z][a-z]*\\) *\\([A-Z][a-z]*\\) *\\([0-9]*\\) .* \\([0-9]*\\)$"
  1855.            date))
  1856.          (month
  1857.           (cdr (assoc 
  1858.                 (substring date (match-beginning 2) (match-end 2))
  1859.                 (calendar-make-alist
  1860.                  calendar-month-name-array
  1861.                  1
  1862.                  '(lambda (x) (substring x 0 3))))))
  1863.          (day
  1864.           (string-to-int (substring date (match-beginning 3) (match-end 3))))
  1865.          (year
  1866.           (string-to-int (substring date (match-beginning 4) (match-end 4)))))
  1867.     (list month day year)))
  1868.  
  1869. (defun calendar-cursor-to-date ()
  1870.   "Returns a list of the month, day, and year of current cursor position.
  1871. Returns nil if the cursor is not on a specific day."
  1872.   (if (and (looking-at "[*0-9]")
  1873.            (< 2 (count-lines (point-min) (point))))
  1874.       (save-excursion
  1875.         (re-search-backward "[^0-9]")
  1876.         (forward-char 1)
  1877.         (let*
  1878.             ((day (string-to-int (buffer-substring (point) (+ 3 (point)))))
  1879.              (day (if (= 0 day) starred-day day))
  1880.              (segment (/ (current-column) 25))
  1881.              (month (% (+ displayed-month segment -1) 12))
  1882.              (month (if (= 0 month) 12 month))
  1883.              (year
  1884.               (cond
  1885.                ((and (=  12 month) (= segment 0)) (1- displayed-year))
  1886.                ((and (=   1 month) (= segment 2)) (1+ displayed-year))
  1887.                (t displayed-year))))
  1888.           (list month day year)))))
  1889.  
  1890. (defun calendar-cursor-to-nearest-date ()
  1891.   "Move the cursor to the closest date.
  1892. The position of the cursor is unchanged if it is already on a date.
  1893. Returns the list (month day year) giving the cursor position."
  1894.   (let ((date (calendar-cursor-to-date))
  1895.         (column (current-column)))
  1896.     (if date
  1897.         date
  1898.       (if (> 3 (count-lines (point-min) (point)))
  1899.           (progn
  1900.             (goto-line 3)
  1901.             (move-to-column column)))
  1902.       (if (not (looking-at "[0-9]"))
  1903.           (if (and (not (looking-at " *$"))
  1904.                    (or (< column 25)
  1905.                        (and (> column 27)
  1906.                             (< column 50))
  1907.                        (and (> column 52)
  1908.                             (< column 75))))
  1909.               (progn
  1910.                 (re-search-forward "[0-9]" nil t)
  1911.                 (backward-char 1))
  1912.             (re-search-backward "[0-9]" nil t)))
  1913.       (calendar-cursor-to-date))))
  1914.  
  1915. (defun calendar-forward-day (arg)
  1916.   "Move the cursor forward ARG days.
  1917. Moves backward if ARG is negative."
  1918.   (interactive "p")
  1919.   (if (/= 0 arg)
  1920.       (let*
  1921.           ((cursor-date (calendar-cursor-to-date))
  1922.            (cursor-date (if cursor-date
  1923.                             cursor-date
  1924.                           (if (> arg 0) (setq arg (1- arg)))
  1925.                           (calendar-cursor-to-nearest-date)))
  1926.            (new-cursor-date
  1927.             (calendar-gregorian-from-absolute
  1928.              (+ (calendar-absolute-from-gregorian cursor-date) arg)))
  1929.            (new-display-month (extract-calendar-month new-cursor-date))
  1930.            (new-display-year (extract-calendar-year new-cursor-date)))
  1931.         ;; Put the new month on the screen, if needed, and go to the new date.
  1932.         (if (not (calendar-date-is-visible-p new-cursor-date))
  1933.             (calendar-other-month new-display-month new-display-year))
  1934.         (calendar-cursor-to-visible-date new-cursor-date))))
  1935.  
  1936. (defun calendar-backward-day (arg)
  1937.   "Move the cursor back ARG days.
  1938. Moves forward if ARG is negative."
  1939.   (interactive "p")
  1940.   (calendar-forward-day (- arg)))
  1941.  
  1942. (defun calendar-forward-week (arg)
  1943.   "Move the cursor forward ARG weeks.
  1944. Moves backward if ARG is negative."
  1945.   (interactive "p")
  1946.   (calendar-forward-day (* arg 7)))
  1947.  
  1948. (defun calendar-backward-week (arg)
  1949.   "Move the cursor back ARG weeks.
  1950. Moves forward if ARG is negative."
  1951.   (interactive "p")
  1952.   (calendar-forward-day (* arg -7)))
  1953.  
  1954. (defun calendar-beginning-of-week (arg)
  1955.   "Move the cursor back ARG Sundays."
  1956.   (interactive "p")
  1957.   (calendar-cursor-to-nearest-date)
  1958.   (let ((day (calendar-day-of-week (calendar-cursor-to-date))))
  1959.     (calendar-backward-day
  1960.      (if (= day 0) (* 7 arg) (+ day (* 7 (1- arg)))))))
  1961.  
  1962. (defun calendar-end-of-week (arg)
  1963.   "Move the cursor forward ARG Saturdays."
  1964.   (interactive "p")
  1965.   (calendar-cursor-to-nearest-date)
  1966.   (let ((day (calendar-day-of-week (calendar-cursor-to-date))))
  1967.     (calendar-forward-day
  1968.      (if (= day 6) (* 7 arg) (+ (- 6 day) (* 7 (1- arg)))))))
  1969.  
  1970. (defun calendar-beginning-of-month (arg)
  1971.   "Move the cursor backward ARG month beginnings."
  1972.   (interactive "p")
  1973.   (calendar-cursor-to-nearest-date)
  1974.   (let* ((date (calendar-cursor-to-date))
  1975.          (month (extract-calendar-month date))
  1976.          (day (extract-calendar-day date))
  1977.          (year (extract-calendar-year date)))
  1978.     (if (= day 1)
  1979.         (calendar-backward-month arg)
  1980.       (calendar-cursor-to-visible-date (list month 1 year))
  1981.       (calendar-backward-month (1- arg)))))
  1982.  
  1983. (defun calendar-end-of-month (arg)
  1984.   "Move the cursor forward ARG month ends."
  1985.   (interactive "p")
  1986.   (calendar-cursor-to-nearest-date)
  1987.   (let* ((date (calendar-cursor-to-date))
  1988.          (month (extract-calendar-month date))
  1989.          (day (extract-calendar-day date))
  1990.          (year (extract-calendar-year date))
  1991.          (last-day (calendar-last-day-of-month month year)))
  1992.     (if (/= day last-day)
  1993.         (progn
  1994.           (calendar-cursor-to-visible-date (list month last-day year))
  1995.           (setq arg (1- arg))))
  1996.     (increment-calendar-month month year arg)
  1997.     (let ((last-day (list
  1998.                      month
  1999.                      (calendar-last-day-of-month month year)
  2000.                      year)))
  2001.       (if (not (calendar-date-is-visible-p last-day))
  2002.           (calendar-other-month month year)
  2003.       (calendar-cursor-to-visible-date last-day)))))
  2004.  
  2005. (defun calendar-beginning-of-year (arg)
  2006.   "Move the cursor backward ARG year beginnings."
  2007.   (interactive "p")
  2008.   (calendar-cursor-to-nearest-date)
  2009.   (let* ((date (calendar-cursor-to-date))
  2010.          (month (extract-calendar-month date))
  2011.          (day (extract-calendar-day date))
  2012.          (year (extract-calendar-year date))
  2013.          (jan-first (list 1 1 year)))
  2014.     (if (and (= day 1) (= 1 month))
  2015.         (calendar-backward-month (* 12 arg))
  2016.       (if (and (= arg 1)
  2017.                (calendar-date-is-visible-p jan-first))
  2018.           (calendar-cursor-to-visible-date jan-first)
  2019.         (calendar-other-month 1 (- year (1- arg)))))))
  2020.  
  2021. (defun calendar-end-of-year (arg)
  2022.   "Move the cursor forward ARG year beginnings."
  2023.   (interactive "p")
  2024.   (calendar-cursor-to-nearest-date)
  2025.   (let* ((date (calendar-cursor-to-date))
  2026.          (month (extract-calendar-month date))
  2027.          (day (extract-calendar-day date))
  2028.          (year (extract-calendar-year date))
  2029.          (dec-31 (list 12 31 year)))
  2030.     (if (and (= day 31) (= 12 month))
  2031.         (calendar-forward-month (* 12 arg))
  2032.       (if (and (= arg 1)
  2033.                (calendar-date-is-visible-p dec-31))
  2034.           (calendar-cursor-to-visible-date dec-31)
  2035.         (calendar-other-month 12 (- year (1- arg)))
  2036.         (calendar-cursor-to-visible-date (list 12 31 displayed-year))))))
  2037.  
  2038. ;; The following version of calendar-gregorian-from-absolute is preferred for
  2039. ;; reasons of clarity, BUT it's much slower than the version that follows it.
  2040.  
  2041. ;;(defun calendar-gregorian-from-absolute (date)
  2042. ;;  "Compute the list (month day year) corresponding to the absolute DATE.
  2043. ;;The absolute date is the number of days elapsed since the (imaginary)
  2044. ;;Gregorian date Sunday, December 31, 1 BC."
  2045. ;;  (let* ((approx (/ date 366));; Approximation from below.
  2046. ;;         (year                ;; Search forward from the approximation.
  2047. ;;          (+ approx
  2048. ;;             (calendar-sum y approx
  2049. ;;                 (>= date (calendar-absolute-from-gregorian (list 1 1 (1+ y))))
  2050. ;;                  1)))
  2051. ;;         (month         ;; Search forward from January.
  2052. ;;          (1+ (calendar-sum m 1
  2053. ;;                   (> date
  2054. ;;                      (calendar-absolute-from-gregorian
  2055. ;;                       (list m (calendar-last-day-of-month m year) year)))
  2056. ;;                   1)))
  2057. ;;         (day           ;; Calculate the day by subtraction.
  2058. ;;          (- date
  2059. ;;             (1- (calendar-absolute-from-gregorian (list month 1 year))))))
  2060. ;;    (list month day year)))
  2061.  
  2062. (defun calendar-gregorian-from-absolute (date)
  2063.   "Compute the list (month day year) corresponding to the absolute DATE.
  2064. The absolute date is the number of days elapsed since the (imaginary)
  2065. Gregorian date Sunday, December 31, 1 BC."
  2066. ;; See the footnote on page 384 of ``Calendrical Calculations, Part II:
  2067. ;; Three Historical Calendars'' by E. M. Reingold,  N. Dershowitz, and S. M.
  2068. ;; Clamen, Software--Practice and Experience, Volume 23, Number 4
  2069. ;; (April, 1993), pages 383-404 for an explanation.
  2070.   (let* ((d0 (1- date))
  2071.          (n400 (/ d0 146097))
  2072.          (d1 (% d0 146097))
  2073.          (n100 (/ d1 36524))
  2074.          (d2 (% d1 36524))
  2075.          (n4 (/ d2 1461))
  2076.          (d3 (% d2 1461))
  2077.          (n1 (/ d3 365))
  2078.          (day (1+ (% d3 365)))
  2079.          (year (+ (* 400 n400) (* 100 n100) (* n4 4) n1)))
  2080.     (if (or (= n100 4) (= n1 4))
  2081.         (list 12 31 year)
  2082.       (let ((year (1+ year))
  2083.             (month 1))
  2084.         (while (let ((mdays (calendar-last-day-of-month month year)))
  2085.                  (and (< mdays day)
  2086.                       (setq day (- day mdays))))
  2087.           (setq month (1+ month)))
  2088.         (list month day year)))))
  2089.  
  2090. (defun calendar-cursor-to-visible-date (date)
  2091.   "Move the cursor to DATE that is on the screen."
  2092.     (let ((month (extract-calendar-month date))
  2093.           (day (extract-calendar-day date))
  2094.           (year (extract-calendar-year date)))
  2095.       (goto-line (+ 3
  2096.                     (/ (+ day -1
  2097.                           (calendar-day-of-week (list month 1 year)))
  2098.                        7)))
  2099.       (move-to-column (+ 6
  2100.                          (* 25
  2101.                             (1+ (calendar-interval
  2102.                                  displayed-month displayed-year month year)))
  2103.                          (* 3 (calendar-day-of-week date))))))
  2104.  
  2105. (defun calendar-other-month (month year)
  2106.   "Display a three-month calendar centered around MONTH and YEAR."
  2107.   (interactive
  2108.    (let* ((completion-ignore-case t)
  2109.           (month (cdr (assoc
  2110.                        (capitalize
  2111.                         (completing-read
  2112.                          "Month name: "
  2113.                          (mapcar 'list (append calendar-month-name-array nil))
  2114.                          nil t))
  2115.                        (calendar-make-alist calendar-month-name-array))))
  2116.           (year (calendar-read
  2117.                  "Year (>0): "
  2118.                  '(lambda (x) (> x 0))
  2119.                  (int-to-string
  2120.                   (extract-calendar-year (calendar-current-date))))))
  2121.      (list month year)))
  2122.   (if (and (= month displayed-month)
  2123.            (= year displayed-year))
  2124.       nil
  2125.     (let ((old-date (calendar-cursor-to-date))
  2126.           (today (calendar-current-date)))
  2127.       (generate-calendar-window month year)
  2128.       (calendar-cursor-to-visible-date
  2129.        (cond
  2130.         ((calendar-date-is-visible-p old-date) old-date)
  2131.         ((calendar-date-is-visible-p today) today)
  2132.         (t (list month 1 year)))))))
  2133.  
  2134. (defun calendar-set-mark (arg)
  2135.   "Mark the date under the cursor, or jump to marked date.
  2136. With no prefix argument, push current date onto marked date ring.
  2137. With argument, jump to mark, pop it, and put point at end of ring."
  2138.   (interactive "P")
  2139.   (let ((date (or (calendar-cursor-to-date)
  2140.                   (error "Cursor is not on a date!"))))
  2141.     (if (null arg)
  2142.         (progn
  2143.           (setq calendar-mark-ring (cons date calendar-mark-ring))
  2144.           ;; Since the top of the mark ring is the marked date in the
  2145.           ;; calendar, the mark ring in the calendar is one longer than
  2146.           ;; in other buffers to get the same effect.
  2147.           (if (> (length calendar-mark-ring) (1+ mark-ring-max))
  2148.               (setcdr (nthcdr mark-ring-max calendar-mark-ring) nil))
  2149.           (message "Mark set"))
  2150.       (if (null calendar-mark-ring)
  2151.           (error "No mark set in this buffer")
  2152.         (calendar-goto-date (car calendar-mark-ring))
  2153.         (setq calendar-mark-ring
  2154.               (cdr (nconc calendar-mark-ring (list date))))))))
  2155.  
  2156. (defun calendar-exchange-point-and-mark ()
  2157.   "Exchange the current cursor position with the marked date."
  2158.   (interactive)
  2159.   (let ((mark (car calendar-mark-ring))
  2160.         (date (or (calendar-cursor-to-date)
  2161.                   (error "Cursor is not on a date!"))))
  2162.     (if (null mark)
  2163.         (error "No mark set in this buffer")
  2164.       (setq calendar-mark-ring (cons date (cdr calendar-mark-ring)))
  2165.       (calendar-goto-date mark))))
  2166.  
  2167. (defun calendar-count-days-region ()
  2168.   "Count the number of days (inclusive) between point and the mark."
  2169.   (interactive)
  2170.   (let* ((days (- (calendar-absolute-from-gregorian
  2171.                    (or (calendar-cursor-to-date)
  2172.                        (error "Cursor is not on a date!")))
  2173.                   (calendar-absolute-from-gregorian
  2174.                    (or (car calendar-mark-ring)
  2175.                        (error "No mark set in this buffer")))))
  2176.          (days (1+ (if (> days 0) days (- days)))))
  2177.     (message "Region has %d day%s (inclusive)"
  2178.              days (if (> days 1) "s" ""))))
  2179.  
  2180. (defun calendar-not-implemented ()
  2181.   "Not implemented."
  2182.   (interactive)
  2183.   (error "%s not available in the calendar"
  2184.          (global-key-binding (this-command-keys))))
  2185.  
  2186. (defun calendar-read (prompt acceptable &optional initial-contents)
  2187.   "Return an object read from the minibuffer.
  2188. Prompt with the string PROMPT and use the function ACCEPTABLE to decide if
  2189. entered item is acceptable.  If non-nil, optional third arg INITIAL-CONTENTS
  2190. is a string to insert in the minibuffer before reading."
  2191.   (let ((value (read-minibuffer prompt initial-contents)))
  2192.     (while (not (funcall acceptable value))
  2193.       (setq value (read-minibuffer prompt initial-contents)))
  2194.     value))
  2195.  
  2196. (defun calendar-read-date ()
  2197.   "Prompt for Gregorian date.  Returns a list (month day year)."
  2198.   (let* ((year (calendar-read
  2199.                 "Year (>0): "
  2200.                 '(lambda (x) (> x 0))
  2201.                 (int-to-string (extract-calendar-year
  2202.                                 (calendar-current-date)))))
  2203.          (month-array calendar-month-name-array)
  2204.          (completion-ignore-case t)
  2205.          (month (cdr (assoc
  2206.                       (capitalize
  2207.                        (completing-read
  2208.                         "Month name: "
  2209.                         (mapcar 'list (append month-array nil))
  2210.                         nil t))
  2211.                       (calendar-make-alist month-array 1 'capitalize))))
  2212.          (last (calendar-last-day-of-month month year))
  2213.          (day (calendar-read
  2214.                (format "Day (1-%d): " last)
  2215.                '(lambda (x) (and (< 0 x) (<= x last))))))
  2216.     (list month day year)))
  2217.  
  2218. (defun calendar-goto-date (date)
  2219.   "Move cursor to DATE."
  2220.   (interactive (list (calendar-read-date)))
  2221.   (let ((month (extract-calendar-month date))
  2222.         (year (extract-calendar-year date)))
  2223.     (if (not (calendar-date-is-visible-p date))
  2224.         (calendar-other-month
  2225.          (if (and (= month 1) (= year 1))
  2226.              2
  2227.            month)
  2228.          year)))
  2229.   (calendar-cursor-to-visible-date date))
  2230.  
  2231. (defun calendar-goto-julian-date (date &optional noecho)
  2232.   "Move cursor to Julian DATE; echo Julian date unless NOECHO is t."
  2233.   (interactive
  2234.    (let* ((today (calendar-current-date))
  2235.           (year (calendar-read
  2236.                  "Julian calendar year (>0): "
  2237.                  '(lambda (x) (> x 0))
  2238.                  (int-to-string
  2239.                   (extract-calendar-year
  2240.                    (calendar-julian-from-absolute
  2241.                     (calendar-absolute-from-gregorian
  2242.                      today))))))
  2243.           (month-array calendar-month-name-array)
  2244.           (completion-ignore-case t)
  2245.           (month (cdr (assoc
  2246.                        (capitalize
  2247.                         (completing-read
  2248.                          "Julian calendar month name: "
  2249.                          (mapcar 'list (append month-array nil))
  2250.                          nil t))
  2251.                        (calendar-make-alist month-array 1 'capitalize))))
  2252.           (last 
  2253.            (if (and (zerop (% year 4)) (= month 2))
  2254.                29
  2255.              (aref [31 28 31 30 31 30 31 31 30 31 30 31] (1- month))))
  2256.           (day (calendar-read
  2257.                 (format "Julian calendar day (%d-%d): "
  2258.                         (if (and (= year 1) (= month 1)) 3 1) last)
  2259.                 '(lambda (x) 
  2260.                    (and (< (if (and (= year 1) (= month 1)) 2 0) x)
  2261.                         (<= x last))))))
  2262.      (list (list month day year))))
  2263.   (calendar-goto-date (calendar-gregorian-from-absolute
  2264.                        (calendar-absolute-from-julian date)))
  2265.   (or noecho (calendar-print-julian-date)))
  2266.  
  2267. (defun calendar-goto-hebrew-date (date &optional noecho)
  2268.   "Move cursor to Hebrew DATE; echo Hebrew date unless NOECHO is t."
  2269.   (interactive
  2270.    (let* ((today (calendar-current-date))
  2271.           (year (calendar-read
  2272.                  "Hebrew calendar year (>3760): "
  2273.                  '(lambda (x) (> x 3760))
  2274.                  (int-to-string
  2275.                   (extract-calendar-year
  2276.                    (calendar-hebrew-from-absolute
  2277.                     (calendar-absolute-from-gregorian today))))))
  2278.           (month-array (if (hebrew-calendar-leap-year-p year)
  2279.                            calendar-hebrew-month-name-array-leap-year
  2280.                          calendar-hebrew-month-name-array-common-year))
  2281.           (completion-ignore-case t)
  2282.           (month (cdr (assoc
  2283.                        (capitalize
  2284.                         (completing-read
  2285.                          "Hebrew calendar month name: "
  2286.                          (mapcar 'list (append month-array nil))
  2287.                          (if (= year 3761)
  2288.                              '(lambda (x)
  2289.                                 (let ((m (cdr
  2290.                                           (assoc
  2291.                                            (car x)
  2292.                                            (calendar-make-alist
  2293.                                             month-array)))))
  2294.                                   (< 0
  2295.                                      (calendar-absolute-from-hebrew
  2296.                                       (list m
  2297.                                             (hebrew-calendar-last-day-of-month
  2298.                                              m year)
  2299.                                             year))))))
  2300.                                  
  2301.                          t))
  2302.                        (calendar-make-alist month-array 1 'capitalize))))
  2303.           (last (hebrew-calendar-last-day-of-month month year))
  2304.           (first (if (and (= year 3761) (= month 10))
  2305.                      18 1))
  2306.           (day (calendar-read
  2307.                 (format "Hebrew calendar day (%d-%d): "
  2308.                         first last)
  2309.                 '(lambda (x) (and (<= first x) (<= x last))))))
  2310.      (list (list month day year))))
  2311.   (calendar-goto-date (calendar-gregorian-from-absolute
  2312.                        (calendar-absolute-from-hebrew date)))
  2313.   (or noecho (calendar-print-hebrew-date)))
  2314.  
  2315. (defun calendar-goto-islamic-date (date &optional noecho)
  2316.   "Move cursor to Islamic DATE; echo Islamic date unless NOECHO is t."
  2317.   (interactive
  2318.    (let* ((today (calendar-current-date))
  2319.           (year (calendar-read
  2320.                  "Islamic calendar year (>0): "
  2321.                  '(lambda (x) (> x 0))
  2322.                  (int-to-string
  2323.                   (extract-calendar-year
  2324.                    (calendar-islamic-from-absolute
  2325.                     (calendar-absolute-from-gregorian today))))))
  2326.           (month-array calendar-islamic-month-name-array)
  2327.           (completion-ignore-case t)
  2328.           (month (cdr (assoc
  2329.                        (capitalize
  2330.                         (completing-read
  2331.                          "Islamic calendar month name: "
  2332.                          (mapcar 'list (append month-array nil))
  2333.                          nil t))
  2334.                        (calendar-make-alist month-array 1 'capitalize))))
  2335.           (last (islamic-calendar-last-day-of-month month year))
  2336.           (day (calendar-read
  2337.                 (format "Islamic calendar day (1-%d): " last)
  2338.                 '(lambda (x) (and (< 0 x) (<= x last))))))
  2339.      (list (list month day year))))
  2340.   (calendar-goto-date (calendar-gregorian-from-absolute
  2341.                        (calendar-absolute-from-islamic date)))
  2342.   (or noecho (calendar-print-islamic-date)))
  2343.  
  2344. (defun calendar-goto-iso-date (date &optional noecho)
  2345.   "Move cursor to ISO DATE; echo ISO date unless NOECHO is t."
  2346.   (interactive
  2347.    (let* ((today (calendar-current-date))
  2348.           (year (calendar-read
  2349.                  "ISO calendar year (>0): "
  2350.                  '(lambda (x) (> x 0))
  2351.                  (int-to-string (extract-calendar-year today))))
  2352.           (no-weeks (extract-calendar-month
  2353.                      (calendar-iso-from-absolute
  2354.                       (1-
  2355.                        (calendar-dayname-on-or-before
  2356.                         1 (calendar-absolute-from-gregorian
  2357.                            (list 1 4 (1+ year))))))))
  2358.           (week (calendar-read
  2359.                  (format "ISO calendar week (1-%d): " no-weeks)
  2360.                  '(lambda (x) (and (> x 0) (<= x no-weeks)))))
  2361.           (day (calendar-read
  2362.                 "ISO day (1-7): "
  2363.                 '(lambda (x) (and (<= 1 x) (<= x 7))))))
  2364.      (list (list week day year))))
  2365.   (calendar-goto-date (calendar-gregorian-from-absolute
  2366.                        (calendar-absolute-from-iso date)))
  2367.   (or noecho (calendar-print-iso-date)))
  2368.  
  2369. (defun calendar-interval (mon1 yr1 mon2 yr2)
  2370.   "The number of months difference between MON1, YR1 and MON2, YR2."
  2371.   (+ (* 12 (- yr2 yr1))
  2372.      (- mon2 mon1)))
  2373.  
  2374. (defun calendar-day-name (date)
  2375.   "Returns a string with the name of the day of the week of DATE."
  2376.   (aref calendar-day-name-array (calendar-day-of-week date)))
  2377.  
  2378. (defconst calendar-day-name-array
  2379.   ["Sunday" "Monday" "Tuesday" "Wednesday" "Thursday" "Friday" "Saturday"])
  2380.  
  2381. (defconst calendar-month-name-array
  2382.   ["January" "February" "March"     "April"   "May"      "June"
  2383.    "July"    "August"   "September" "October" "November" "December"])
  2384.  
  2385. (defun calendar-make-alist (sequence &optional start-index filter)
  2386.   "Make an assoc list corresponding to SEQUENCE.
  2387. Start at index 1, unless optional START-INDEX is provided.
  2388. If FILTER is provided, apply it to each item in the list."
  2389.   (let ((index (if start-index (1- start-index) 0)))
  2390.     (mapcar
  2391.      '(lambda (x)
  2392.         (setq index (1+ index))
  2393.         (cons (if filter (funcall filter x) x)
  2394.               index))
  2395.      (append sequence nil))))
  2396.  
  2397. (defun calendar-month-name (month)
  2398.   "The name of MONTH."
  2399.   (aref calendar-month-name-array (1- month)))
  2400.  
  2401. (defun calendar-day-of-week (date)
  2402.   "Returns the day-of-the-week index of DATE, 0 for Sunday, 1 for Monday, etc."
  2403.   (% (calendar-absolute-from-gregorian date) 7))
  2404.  
  2405. (defun calendar-unmark ()
  2406.   "Delete the diary and holiday marks from the calendar."
  2407.   (interactive)
  2408.   (setq mark-diary-entries-in-calendar nil)
  2409.   (setq mark-holidays-in-calendar nil)
  2410.   (save-excursion
  2411.     (goto-line 3)
  2412.     (beginning-of-line)
  2413.     (let ((buffer-read-only nil)
  2414.           (start (point))
  2415.           (star-date (search-forward "**" nil t))
  2416.           (star-point (point)))
  2417.       (if star-date
  2418.           (progn    ;;  Don't delete today as left by calendar-star-date
  2419.             (subst-char-in-region start (- star-point 2)
  2420.                                   (string-to-char diary-entry-marker) ?  t)
  2421.             (subst-char-in-region start (- star-point 2)
  2422.                                  (string-to-char calendar-holiday-marker) ?  t)
  2423.             (subst-char-in-region star-point (point-max)
  2424.                                   (string-to-char diary-entry-marker) ?  t)
  2425.             (subst-char-in-region star-point (point-max)
  2426.                                 (string-to-char calendar-holiday-marker) ?  t))
  2427.         (subst-char-in-region start (point-max)
  2428.                               (string-to-char diary-entry-marker) ?  t)
  2429.         (subst-char-in-region start (point-max)
  2430.                               (string-to-char calendar-holiday-marker) ?  t))
  2431.       (set-buffer-modified-p nil))))
  2432.  
  2433. (defun calendar-date-is-visible-p (date)
  2434.   "Returns t if DATE is legal and is visible in the calendar window."
  2435.   (let ((gap (calendar-interval
  2436.               displayed-month displayed-year
  2437.               (extract-calendar-month date) (extract-calendar-year date))))
  2438.     (and (calendar-date-is-legal-p date) (> 2 gap) (< -2 gap))))
  2439.  
  2440. (defun calendar-date-is-legal-p (date)
  2441.   "Returns t if DATE is a legal date."
  2442.   (let ((month (extract-calendar-month date))
  2443.         (day (extract-calendar-day date))
  2444.         (year (extract-calendar-year date)))
  2445.     (and (<= 1 month) (<= month 12)
  2446.          (<= 1 day) (<= day (calendar-last-day-of-month month year))
  2447.          (<= 1 year))))
  2448.  
  2449. (defun calendar-date-equal (date1 date2)
  2450.   "Returns t if the DATE1 and DATE2 are the same."
  2451.   (and
  2452.    (= (extract-calendar-month date1) (extract-calendar-month date2))
  2453.    (= (extract-calendar-day date1) (extract-calendar-day date2))
  2454.    (= (extract-calendar-year date1) (extract-calendar-year date2))))
  2455.  
  2456. (defun mark-visible-calendar-date (date &optional mark)
  2457.   "Leave mark DATE with MARK.  MARK defaults to diary-entry-marker."
  2458.   (if (calendar-date-is-legal-p date)
  2459.       (save-excursion
  2460.         (set-buffer calendar-buffer)
  2461.         (calendar-cursor-to-visible-date date)
  2462.         (forward-char 1)
  2463.         (let ((buffer-read-only nil))
  2464.           (delete-char 1)
  2465.           (insert (if mark mark diary-entry-marker))
  2466.           (forward-char -2))
  2467.         (set-buffer-modified-p nil))))
  2468.  
  2469. (defun calendar-star-date ()
  2470.   "Replace the date under the cursor in the calendar window with asterisks.
  2471. This function can be used with the today-visible-calendar-hook run after the
  2472. calendar window has been prepared."
  2473.   (let ((buffer-read-only nil))
  2474.     (make-variable-buffer-local 'starred-day)
  2475.     (forward-char 1)
  2476.     (setq starred-day
  2477.           (string-to-int
  2478.            (buffer-substring (point) (- (point) 2))))
  2479.     (delete-char -2)
  2480.     (insert "**")
  2481.     (backward-char 1)
  2482.     (set-buffer-modified-p nil)))
  2483.  
  2484. (defun calendar-mark-today ()
  2485.   "Mark the date under the cursor in the calendar window with an equal sign.
  2486. This function can be used with the today-visible-calendar-hook run after the
  2487. calendar window has been prepared."
  2488.   (let ((buffer-read-only nil))
  2489.     (forward-char 1)
  2490.     (delete-char 1)
  2491.     (insert "=")
  2492.     (backward-char 2)
  2493.     (set-buffer-modified-p nil)))
  2494.  
  2495. (defun calendar-date-compare (date1 date2)
  2496.   "Returns t if DATE1 is before DATE2, nil otherwise.
  2497. The actual dates are in the car of DATE1 and DATE2."
  2498.   (< (calendar-absolute-from-gregorian (car date1))
  2499.      (calendar-absolute-from-gregorian (car date2))))
  2500.  
  2501. (defun calendar-date-string (date &optional abbreviate nodayname)
  2502.   "A string form of DATE, driven by the variable `calendar-date-display-form'.
  2503. An optional parameter ABBREVIATE, when t, causes the month and day names to be
  2504. abbreviated to three characters.  An optional parameter NODAYNAME, when t,
  2505. omits the name of the day of the week."
  2506.   (let* ((dayname
  2507.           (if nodayname
  2508.               nil
  2509.             (if abbreviate
  2510.                 (substring (calendar-day-name date) 0 3)
  2511.               (calendar-day-name date))))
  2512.          (month (extract-calendar-month date))
  2513.          (monthname
  2514.           (if abbreviate
  2515.               (substring
  2516.                (calendar-month-name month) 0 3)
  2517.             (calendar-month-name month)))
  2518.          (day (int-to-string (extract-calendar-day date)))
  2519.          (month (int-to-string month))
  2520.          (year (int-to-string (extract-calendar-year date))))
  2521.     (mapconcat 'eval calendar-date-display-form "")))
  2522.  
  2523. (defun calendar-dayname-on-or-before (dayname date)
  2524.   "Returns the absolute date of the DAYNAME on or before absolute DATE.
  2525. DAYNAME=0 means Sunday, DAYNAME=1 means Monday, and so on.
  2526.  
  2527. Note: Applying this function to d+6 gives us the DAYNAME on or after an
  2528. absolute day d.  Similarly, applying it to d+3 gives the DAYNAME nearest to
  2529. absolute date d, applying it to d-1 gives the DAYNAME previous to absolute
  2530. date d, and applying it to d+7 gives the DAYNAME following absolute date d."
  2531.   (- date (% (- date dayname) 7)))
  2532.  
  2533. (defun calendar-nth-named-day (n dayname month year &optional day)
  2534.   "The date of Nth DAYNAME in MONTH, YEAR before/after optional DAY.
  2535. A DAYNAME of 0 means Sunday, 1 means Monday, and so on.  If N<0,
  2536. return the Nth DAYNAME before MONTH DAY, YEAR (inclusive).
  2537. If N>0, return the Nth DAYNAME after MONTH DAY, YEAR (inclusive).
  2538.  
  2539. If DAY is omitted, it defaults to 1 if N>0, and MONTH's last day otherwise."
  2540.   (calendar-gregorian-from-absolute
  2541.    (if (> n 0)
  2542.        (+ (* 7 (1- n))
  2543.       (calendar-dayname-on-or-before
  2544.        dayname
  2545.        (+ 6 (calendar-absolute-from-gregorian
  2546.          (list month (or day 1) year)))))
  2547.      (+ (* 7 (1+ n))
  2548.     (calendar-dayname-on-or-before
  2549.      dayname
  2550.      (calendar-absolute-from-gregorian
  2551.       (list month
  2552.                 (or day (calendar-last-day-of-month month year))
  2553.                 year)))))))
  2554.  
  2555. (defun calendar-print-day-of-year ()
  2556.   "Show the day number in the year and the number of days remaining in the
  2557. year for the date under the cursor."
  2558.   (interactive)
  2559.   (let* ((date (or (calendar-cursor-to-date)
  2560.                    (error "Cursor is not on a date!")))
  2561.          (year (extract-calendar-year date))
  2562.          (day (calendar-day-number date))
  2563.          (days-remaining (- (calendar-day-number (list 12 31 year)) day)))
  2564.     (message "Day %d of %d; %d day%s remaining in the year"
  2565.              day year days-remaining (if (= days-remaining 1) "" "s"))))
  2566.  
  2567. (defun calendar-absolute-from-iso (date)
  2568.   "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE.
  2569. The `ISO year' corresponds approximately to the Gregorian year, but
  2570. weeks start on Monday and end on Sunday.  The first week of the ISO year is
  2571. the first such week in which at least 4 days are in a year.  The ISO
  2572. commercial DATE has the form (week day year) in which week is in the range
  2573. 1..52 and day is in the range 0..6 (1 = Monday, 2 = Tuesday, ..., 0 =
  2574. Sunday).  The The Gregorian date Sunday, December 31, 1 BC is imaginary."
  2575.   (let* ((week (extract-calendar-month date))
  2576.          (day (extract-calendar-day date))
  2577.          (year (extract-calendar-year date)))
  2578.     (+ (calendar-dayname-on-or-before
  2579.         1 (+ 3 (calendar-absolute-from-gregorian (list 1 1 year))))
  2580.        (* 7 (1- week))
  2581.        (if (= day 0) 6 (1- day)))))
  2582.  
  2583. (defun calendar-iso-from-absolute (date)
  2584.   "Compute the `ISO commercial date' corresponding to the absolute DATE.
  2585. The ISO year corresponds approximately to the Gregorian year, but weeks
  2586. start on Monday and end on Sunday.  The first week of the ISO year is the
  2587. first such week in which at least 4 days are in a year.  The ISO commercial
  2588. date has the form (week day year) in which week is in the range 1..52 and
  2589. day is in the range 0..6 (1 = Monday, 2 = Tuesday, ..., 0 = Sunday).  The
  2590. absolute date is the number of days elapsed since the (imaginary) Gregorian
  2591. date Sunday, December 31, 1 BC."
  2592.   (let* ((approx (extract-calendar-year
  2593.                   (calendar-gregorian-from-absolute (- date 3))))
  2594.          (year (+ approx
  2595.                   (calendar-sum y approx
  2596.                       (>= date (calendar-absolute-from-iso (list 1 1 (1+ y))))
  2597.                       1))))
  2598.     (list
  2599.      (1+ (/ (- date (calendar-absolute-from-iso (list 1 1 year))) 7))
  2600.      (% date 7)
  2601.      year)))
  2602.  
  2603. (defun calendar-print-iso-date ()
  2604.   "Show equivalent ISO date for the date under the cursor."
  2605.   (interactive)
  2606.   (let* ((greg-date
  2607.           (or (calendar-cursor-to-date)
  2608.               (error "Cursor is not on a date!")))
  2609.          (day (% (calendar-absolute-from-gregorian greg-date) 7))
  2610.          (iso-date (calendar-iso-from-absolute
  2611.                     (calendar-absolute-from-gregorian greg-date))))
  2612.     (message "ISO date: Day %s of week %d of %d."
  2613.              (if (zerop day) 7 day)
  2614.              (extract-calendar-month iso-date)
  2615.              (extract-calendar-year iso-date))))
  2616.  
  2617. (defun calendar-julian-from-absolute (date)
  2618.   "Compute the Julian (month day year) corresponding to the absolute DATE.
  2619. The absolute date is the number of days elapsed since the (imaginary)
  2620. Gregorian date Sunday, December 31, 1 BC."
  2621.   (let* ((approx (/ (+ date 2) 366));; Approximation from below.
  2622.          (year        ;; Search forward from the approximation.
  2623.           (+ approx
  2624.              (calendar-sum y approx
  2625.                 (>= date (calendar-absolute-from-julian (list 1 1 (1+ y))))
  2626.                 1)))
  2627.          (month       ;; Search forward from January.
  2628.           (1+ (calendar-sum m 1
  2629.                  (> date
  2630.                     (calendar-absolute-from-julian
  2631.                      (list m
  2632.                            (if (and (= m 2) (= (% year 4) 0))
  2633.                                29
  2634.                              (aref [31 28 31 30 31 30 31 31 30 31 30 31]
  2635.                                    (1- m)))
  2636.                            year)))
  2637.                  1)))
  2638.          (day         ;; Calculate the day by subtraction.
  2639.           (- date (1- (calendar-absolute-from-julian (list month 1 year))))))
  2640.     (list month day year)))
  2641.  
  2642. (defun calendar-absolute-from-julian (date)
  2643.   "The number of days elapsed between the Gregorian date 12/31/1 BC and DATE.
  2644. The Gregorian date Sunday, December 31, 1 BC is imaginary."
  2645.   (let ((month (extract-calendar-month date))
  2646.         (day (extract-calendar-day date))
  2647.         (year (extract-calendar-year date)))
  2648.     (+ (calendar-day-number date)
  2649.        (if (and (= (% year 100) 0)
  2650.                 (/= (% year 400) 0)
  2651.                 (> month 2))
  2652.            1 0);; Correct for Julian but not Gregorian leap year.
  2653.        (* 365 (1- year))
  2654.        (/ (1- year) 4)
  2655.        -2)))
  2656.  
  2657. (defun calendar-print-julian-date ()
  2658.   "Show the Julian calendar equivalent of the date under the cursor."
  2659.   (interactive)
  2660.   (message "Julian date: %s"
  2661.            (calendar-date-string
  2662.             (calendar-julian-from-absolute
  2663.              (calendar-absolute-from-gregorian
  2664.               (or (calendar-cursor-to-date)
  2665.                   (error "Cursor is not on a date!"))))
  2666.             nil t)))
  2667.  
  2668. (defun islamic-calendar-leap-year-p (year)
  2669.   "Returns t if YEAR is a leap year on the Islamic calendar."
  2670.   (memq (% year 30)
  2671.         (list 2 5 7 10 13 16 18 21 24 26 29)))
  2672.  
  2673. (defun islamic-calendar-last-day-of-month (month year)
  2674.   "The last day in MONTH during YEAR on the Islamic calendar."
  2675.   (cond
  2676.    ((memq month (list 1 3 5 7 9 11)) 30)
  2677.    ((memq month (list 2 4 6 8 10)) 29)
  2678.    (t (if (islamic-calendar-leap-year-p year) 30 29))))
  2679.  
  2680. (defun islamic-calendar-day-number (date)
  2681.   "Return the day number within the year of the Islamic date DATE."
  2682.     (let* ((month (extract-calendar-month date))
  2683.            (day (extract-calendar-day date)))
  2684.       (+ (* 30 (/ month 2))
  2685.          (* 29 (/ (1- month) 2))
  2686.          day)))
  2687.  
  2688. (defun calendar-absolute-from-islamic (date)
  2689.   "Absolute date of Islamic DATE.
  2690. The absolute date is the number of days elapsed since the (imaginary)
  2691. Gregorian date Sunday, December 31, 1 BC."
  2692.   (let* ((month (extract-calendar-month date))
  2693.          (day (extract-calendar-day date))
  2694.          (year (extract-calendar-year date))
  2695.          (y (% year 30))
  2696.          (leap-years-in-cycle
  2697.           (cond
  2698.            ((< y 3) 0)  ((< y 6) 1)  ((< y 8) 2)  ((< y 11) 3) ((< y 14) 4)
  2699.            ((< y 17) 5) ((< y 19) 6) ((< y 22) 7) ((< y 25) 8) ((< y 27) 9)
  2700.            (t 10))))
  2701.     (+ (islamic-calendar-day-number date);; days so far this year
  2702.        (* (1- year) 354)                 ;; days in all non-leap years
  2703.        (* 11 (/ year 30))                ;; leap days in complete cycles
  2704.        leap-years-in-cycle               ;; leap days this cycle
  2705.        227014)))                         ;; days before start of calendar
  2706.  
  2707. (defun calendar-islamic-from-absolute (date)
  2708.   "Compute the Islamic date (month day year) corresponding to absolute DATE.
  2709. The absolute date is the number of days elapsed since the (imaginary)
  2710. Gregorian date Sunday, December 31, 1 BC."
  2711.   (if (< date 227015)
  2712.       (list 0 0 0);; pre-Islamic date
  2713.     (let* ((approx (/ (- date 227014) 355));; Approximation from below.
  2714.            (year           ;; Search forward from the approximation.
  2715.             (+ approx
  2716.                (calendar-sum y approx
  2717.                              (>= date (calendar-absolute-from-islamic
  2718.                                        (list 1 1 (1+ y))))
  2719.                              1)))
  2720.            (month          ;; Search forward from Muharram.
  2721.             (1+ (calendar-sum m 1
  2722.                               (> date
  2723.                                  (calendar-absolute-from-islamic
  2724.                                   (list m
  2725.                                         (islamic-calendar-last-day-of-month
  2726.                                          m year)
  2727.                                         year)))
  2728.                               1)))
  2729.            (day            ;; Calculate the day by subtraction.
  2730.             (- date
  2731.                (1- (calendar-absolute-from-islamic (list month 1 year))))))
  2732.       (list month day year))))
  2733.  
  2734. (defconst calendar-islamic-month-name-array
  2735.   ["Muharram" "Safar" "Rabi I" "Rabi II" "Jumada I" "Jumada II"
  2736.    "Rajab" "Sha'ban" "Ramadan" "Shawwal" "Dhu al-Qada" "Dhu al-Hijjah"])
  2737.  
  2738. (defun calendar-print-islamic-date ()
  2739.   "Show the Islamic calendar equivalent of the date under the cursor."
  2740.   (interactive)
  2741.   (let ((calendar-month-name-array calendar-islamic-month-name-array)
  2742.         (islamic-date (calendar-islamic-from-absolute
  2743.                        (calendar-absolute-from-gregorian
  2744.                         (or (calendar-cursor-to-date)
  2745.                             (error "Cursor is not on a date!"))))))
  2746.     (if (< (extract-calendar-year islamic-date) 1)
  2747.         (message "Date is pre-Islamic")
  2748.       (message "Islamic date (until sunset): %s"
  2749.                (calendar-date-string islamic-date nil t)))))
  2750.  
  2751. (defun calendar-hebrew-from-absolute (date)
  2752.   "Compute the Hebrew date (month day year) corresponding to absolute DATE.
  2753. The absolute date is the number of days elapsed since the (imaginary)
  2754. Gregorian date Sunday, December 31, 1 BC."
  2755.   (let* ((greg-date (calendar-gregorian-from-absolute date))
  2756.          (month (aref [9 10 11 12 1 2 3 4 7 7 7 8]
  2757.                  (1- (extract-calendar-month greg-date))))
  2758.          (day)
  2759.          (year (+ 3760 (extract-calendar-year greg-date))))
  2760.     (while (>= date (calendar-absolute-from-hebrew (list 7 1 (1+ year))))
  2761.         (setq year (1+ year)))
  2762.     (let ((length (hebrew-calendar-last-month-of-year year)))
  2763.       (while (> date
  2764.                 (calendar-absolute-from-hebrew
  2765.                  (list month
  2766.                        (hebrew-calendar-last-day-of-month month year)
  2767.                        year)))
  2768.         (setq month (1+ (% month length)))))
  2769.     (setq day (1+
  2770.                (- date (calendar-absolute-from-hebrew (list month 1 year)))))
  2771.     (list month day year)))
  2772.  
  2773. (defun hebrew-calendar-leap-year-p (year)
  2774.   "t if YEAR is a Hebrew calendar leap year."
  2775.   (< (% (1+ (* 7 year)) 19) 7))
  2776.  
  2777. (defun hebrew-calendar-last-month-of-year (year)
  2778.   "The last month of the Hebrew calendar YEAR."
  2779.   (if (hebrew-calendar-leap-year-p year)
  2780.       13
  2781.     12))
  2782.  
  2783. (defun hebrew-calendar-last-day-of-month (month year)
  2784.   "The last day of MONTH in YEAR."
  2785.   (if (or (memq month (list 2 4 6 10 13))
  2786.           (and (= month 12) (not (hebrew-calendar-leap-year-p year)))
  2787.           (and (= month 8) (not (hebrew-calendar-long-heshvan-p year)))
  2788.           (and (= month 9) (hebrew-calendar-short-kislev-p year)))
  2789.       29
  2790.     30))
  2791.  
  2792. (defun hebrew-calendar-elapsed-days (year)
  2793.   "Days from Sun. prior to start of Hebrew calendar to mean conjunction of Tishri of Hebrew YEAR."
  2794.   (let* ((months-elapsed
  2795.           (+ (* 235 (/ (1- year) 19));; Months in complete cycles so far.
  2796.              (* 12 (% (1- year) 19))      ;; Regular months in this cycle
  2797.              (/ (1+ (* 7 (% (1- year) 19))) 19)));; Leap months this cycle
  2798.          (parts-elapsed (+ 204 (* 793 (% months-elapsed 1080))))
  2799.          (hours-elapsed (+ 5
  2800.                            (* 12 months-elapsed)
  2801.                            (* 793 (/ months-elapsed 1080))
  2802.                            (/ parts-elapsed 1080)))
  2803.          (parts                                  ;; Conjunction parts
  2804.           (+ (* 1080 (% hours-elapsed 24)) (% parts-elapsed 1080)))
  2805.          (day                                    ;; Conjunction day
  2806.           (+ 1 (* 29 months-elapsed) (/ hours-elapsed 24)))
  2807.          (alternative-day
  2808.           (if (or (>= parts 19440)    ;; If the new moon is at or after midday,
  2809.                   (and (= (% day 7) 2);; ...or is on a Tuesday...
  2810.                        (>= parts 9924)  ;;    at 9 hours, 204 parts or later...
  2811.                        (not (hebrew-calendar-leap-year-p year)));; of a
  2812.                                                                 ;; common year,
  2813.                   (and (= (% day 7) 1);; ...or is on a Monday...
  2814.                        (>= parts 16789) ;;   at 15 hours, 589 parts or later...
  2815.                        (hebrew-calendar-leap-year-p (1- year))));; at the end
  2816.                                                      ;; of a leap year
  2817.        ;; Then postpone Rosh HaShanah one day
  2818.               (1+ day)
  2819.        ;; Else
  2820.             day)))
  2821.     (if ;; If Rosh HaShanah would occur on Sunday, Wednesday, or Friday
  2822.         (memq (% alternative-day 7) (list 0 3 5))
  2823.   ;; Then postpone it one (more) day and return        
  2824.         (1+ alternative-day)
  2825.   ;; Else return        
  2826.       alternative-day)))
  2827.  
  2828. (defun hebrew-calendar-days-in-year (year)
  2829.   "Number of days in Hebrew YEAR."
  2830.   (- (hebrew-calendar-elapsed-days (1+ year))
  2831.      (hebrew-calendar-elapsed-days year)))
  2832.  
  2833. (defun hebrew-calendar-long-heshvan-p (year)
  2834.   "t if Heshvan is long in Hebrew YEAR."
  2835.   (= (% (hebrew-calendar-days-in-year year) 10) 5))
  2836.  
  2837. (defun hebrew-calendar-short-kislev-p (year)
  2838.   "t if Kislev is short in Hebrew YEAR."
  2839.   (= (% (hebrew-calendar-days-in-year year) 10) 3))
  2840.  
  2841. (defun calendar-absolute-from-hebrew (date)
  2842.   "Absolute date of Hebrew DATE.
  2843. The absolute date is the number of days elapsed since the (imaginary)
  2844. Gregorian date Sunday, December 31, 1 BC."
  2845.   (let* ((month (extract-calendar-month date))
  2846.          (day (extract-calendar-day date))
  2847.          (year (extract-calendar-year date)))
  2848.     (+ day                            ;; Days so far this month.
  2849.        (if (< month 7);; before Tishri
  2850.      ;; Then add days in prior months this year before and after Nisan
  2851.            (+ (calendar-sum
  2852.                m 7 (<= m (hebrew-calendar-last-month-of-year year))
  2853.                (hebrew-calendar-last-day-of-month m year))
  2854.               (calendar-sum
  2855.                m 1 (< m month)
  2856.                (hebrew-calendar-last-day-of-month m year)))
  2857.      ;; Else add days in prior months this year
  2858.          (calendar-sum
  2859.           m 7 (< m month)
  2860.           (hebrew-calendar-last-day-of-month m year)))
  2861.     (hebrew-calendar-elapsed-days year);; Days in prior years.
  2862.     -1373429)))                        ;; Days elapsed before absolute date 1.
  2863.  
  2864. (defconst calendar-hebrew-month-name-array-common-year
  2865.   ["Nisan" "Iyar" "Sivan" "Tammuz" "Av" "Elul" "Tishri"
  2866.    "Heshvan" "Kislev" "Teveth" "Shevat" "Adar"])
  2867.  
  2868. (defconst calendar-hebrew-month-name-array-leap-year
  2869.   ["Nisan" "Iyar" "Sivan" "Tammuz" "Av" "Elul" "Tishri"
  2870.    "Heshvan" "Kislev" "Teveth" "Shevat" "Adar I" "Adar II"])
  2871.  
  2872. (defun calendar-print-hebrew-date ()
  2873.   "Show the Hebrew calendar equivalent of the date under the cursor."
  2874.   (interactive)
  2875.   (let* ((hebrew-date (calendar-hebrew-from-absolute
  2876.                        (calendar-absolute-from-gregorian
  2877.                         (or (calendar-cursor-to-date)
  2878.                             (error "Cursor is not on a date!")))))
  2879.          (calendar-month-name-array
  2880.           (if (hebrew-calendar-leap-year-p (extract-calendar-year hebrew-date))
  2881.               calendar-hebrew-month-name-array-leap-year
  2882.             calendar-hebrew-month-name-array-common-year)))
  2883.     (message "Hebrew date (until sunset): %s"
  2884.              (calendar-date-string hebrew-date nil t))))
  2885.  
  2886. (defun hebrew-calendar-yahrzeit (death-date year)
  2887.   "Absolute date of the anniversary of Hebrew DEATH-DATE in Hebrew YEAR."
  2888.   (let* ((death-day (extract-calendar-day death-date))
  2889.          (death-month (extract-calendar-month death-date))
  2890.          (death-year (extract-calendar-year death-date)))
  2891.     (cond
  2892.      ;; If it's Heshvan 30 it depends on the first anniversary; if
  2893.      ;; that was not Heshvan 30, use the day before Kislev 1.
  2894.      ((and (= death-month 8)
  2895.            (= death-day 30)
  2896.            (not (hebrew-calendar-long-heshvan-p (1+ death-year))))
  2897.       (1- (calendar-absolute-from-hebrew (list 9 1 year))))
  2898.      ;; If it's Kislev 30 it depends on the first anniversary; if
  2899.      ;; that was not Kislev 30, use the day before Teveth 1.
  2900.      ((and (= death-month 9)
  2901.            (= death-day 30)
  2902.            (hebrew-calendar-short-kislev-p (1+ death-year)))
  2903.       (1- (calendar-absolute-from-hebrew (list 10 1 year))))
  2904.      ;; If it's Adar II, use the same day in last month of
  2905.      ;; year (Adar or Adar II).
  2906.      ((= death-month 13)
  2907.       (calendar-absolute-from-hebrew
  2908.        (list (hebrew-calendar-last-month-of-year year) death-day year)))
  2909.      ;; If it's the 30th in Adar I and year is not a leap year
  2910.      ;; (so Adar has only 29 days), use the last day in Shevat.
  2911.      ((and (= death-day 30)
  2912.            (= death-month 12)
  2913.            (not (hebrew-calendar-leap-year-p year)))
  2914.       (calendar-absolute-from-hebrew (list 11 30 year)))
  2915.      ;; In all other cases, use the normal anniversary of the date of death.
  2916.      (t (calendar-absolute-from-hebrew
  2917.          (list death-month death-day year))))))
  2918.  
  2919. (defun calendar-set-mode-line (str)
  2920.   "Set mode line to STR, centered, surrounded by dashes."
  2921.   (setq mode-line-format
  2922.         (calendar-string-spread (list "" str "") ?- (frame-width))))
  2923.  
  2924. ;;;###autoload
  2925. (defun list-yahrzeit-dates (death-date start-year end-year)
  2926.   "List Yahrzeit dates for *Gregorian* DEATH-DATE from START-YEAR to END-YEAR.
  2927. When called interactively from the calendar window, the date of death is taken
  2928. from the cursor position."
  2929.   (interactive
  2930.    (let* ((death-date
  2931.            (if (equal (current-buffer) (get-buffer calendar-buffer))
  2932.                (calendar-cursor-to-date)
  2933.              (let* ((today (calendar-current-date))
  2934.                     (year (calendar-read
  2935.                            "Year of death (>0): "
  2936.                            '(lambda (x) (> x 0))
  2937.                            (int-to-string (extract-calendar-year today))))
  2938.                     (month-array calendar-month-name-array)
  2939.                     (completion-ignore-case t)
  2940.                     (month (cdr (assoc
  2941.                                  (capitalize
  2942.                                   (completing-read
  2943.                                    "Month of death (name): "
  2944.                                    (mapcar 'list (append month-array nil))
  2945.                                    nil t))
  2946.                                  (calendar-make-alist
  2947.                                   month-array 1 'capitalize))))
  2948.                     (last (calendar-last-day-of-month month year))
  2949.                     (day (calendar-read
  2950.                           (format "Day of death (1-%d): " last)
  2951.                           '(lambda (x) (and (< 0 x) (<= x last))))))
  2952.                (list month day year))))
  2953.           (death-year (extract-calendar-year death-date))
  2954.           (start-year (calendar-read
  2955.                        (format "Starting year of Yahrzeit table (>%d): "
  2956.                                death-year)
  2957.                        '(lambda (x) (> x death-year))
  2958.                        (int-to-string (1+ death-year))))
  2959.           (end-year (calendar-read
  2960.                      (format "Ending year of Yahrzeit table (>=%d): "
  2961.                              start-year)
  2962.                        '(lambda (x) (>= x start-year)))))
  2963.    (list death-date start-year end-year)))
  2964.   (message "Computing yahrzeits...")
  2965.   (let* ((yahrzeit-buffer "*Yahrzeits*")
  2966.          (h-date (calendar-hebrew-from-absolute
  2967.                   (calendar-absolute-from-gregorian death-date)))
  2968.          (h-month (extract-calendar-month h-date))
  2969.          (h-day (extract-calendar-day h-date))
  2970.          (h-year (extract-calendar-year h-date)))
  2971.     (set-buffer (get-buffer-create yahrzeit-buffer))
  2972.     (setq buffer-read-only nil)
  2973.     (calendar-set-mode-line
  2974.      (format "Yahrzeit dates for %s = %s"
  2975.              (calendar-date-string death-date)
  2976.              (let ((calendar-month-name-array
  2977.                     (if (hebrew-calendar-leap-year-p h-year)
  2978.                         calendar-hebrew-month-name-array-leap-year
  2979.                       calendar-hebrew-month-name-array-common-year)))
  2980.                (calendar-date-string h-date nil t))))
  2981.     (erase-buffer)
  2982.     (goto-char (point-min))
  2983.     (calendar-for-loop i from start-year to end-year do
  2984.         (insert
  2985.          (calendar-date-string
  2986.           (calendar-gregorian-from-absolute
  2987.            (hebrew-calendar-yahrzeit
  2988.             h-date
  2989.             (extract-calendar-year
  2990.              (calendar-hebrew-from-absolute
  2991.               (calendar-absolute-from-gregorian (list 1 1 i))))))) "\n"))
  2992.     (goto-char (point-min))
  2993.     (set-buffer-modified-p nil)
  2994.     (setq buffer-read-only t)
  2995.     (display-buffer yahrzeit-buffer)
  2996.     (message "Computing yahrzeits...done")))
  2997.  
  2998. (defun calendar-print-astro-day-number ()
  2999.   "Show astronomical (Julian) day number of afternoon on date shown by cursor."
  3000.   (interactive)
  3001.   (message
  3002.    "Astronomical (Julian) day number after noon UTC: %d"
  3003.    (+ 1721425
  3004.       (calendar-absolute-from-gregorian
  3005.        (or (calendar-cursor-to-date)
  3006.            (error "Cursor is not on a date!"))))))
  3007.  
  3008. (defun calendar-goto-astro-day-number (daynumber &optional noecho)
  3009.   "Move cursor to astronomical (Julian) DAYNUMBER.
  3010. Echo astronomical (Julian) day number unless NOECHO is t."
  3011.   (interactive (list (calendar-read
  3012.                       "Astronomical (Julian) day number (>1721425): "
  3013.                       '(lambda (x) (> x 1721425)))))
  3014.   (calendar-goto-date (calendar-gregorian-from-absolute (- daynumber 1721425)))
  3015.   (or noecho (calendar-print-astro-day-number)))
  3016.  
  3017. (run-hooks 'calendar-load-hook)
  3018.  
  3019. (provide 'calendar)
  3020.  
  3021. ;;; calendar.el ends here
  3022.